1// Copyright (c) 2012 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "chrome/browser/extensions/api/web_navigation/web_navigation_api_constants.h"
6
7namespace extensions {
8
9namespace web_navigation_api_constants {
10
11const char kErrorKey[] = "error";
12const char kFrameIdKey[] = "frameId";
13const char kParentFrameIdKey[] = "parentFrameId";
14const char kProcessIdKey[] = "processId";
15const char kReplacedTabIdKey[] = "replacedTabId";
16const char kSourceFrameIdKey[] = "sourceFrameId";
17const char kSourceProcessIdKey[] = "sourceProcessId";
18const char kSourceTabIdKey[] = "sourceTabId";
19const char kTabIdKey[] = "tabId";
20const char kTimeStampKey[] = "timeStamp";
21const char kTransitionTypeKey[] = "transitionType";
22const char kTransitionQualifiersKey[] = "transitionQualifiers";
23const char kUrlKey[] = "url";
24
25}  // namespace web_navigation_api_constants
26
27}  // namespace extensions
28