1// Copyright (c) 2011 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/extension_webnavigation_api_constants.h"
6
7namespace extension_webnavigation_api_constants {
8
9const char kErrorKey[] = "error";
10const char kFrameIdKey[] = "frameId";
11const char kRequestIdKey[] = "requestId";
12const char kSourceTabIdKey[] = "sourceTabId";
13const char kSourceUrlKey[] = "sourceUrl";
14const char kTabIdKey[] = "tabId";
15const char kTimeStampKey[] = "timeStamp";
16const char kTransitionTypeKey[] = "transitionType";
17const char kTransitionQualifiersKey[] = "transitionQualifiers";
18const char kUrlKey[] = "url";
19
20const char kOnBeforeNavigate[] = "experimental.webNavigation.onBeforeNavigate";
21const char kOnBeforeRetarget[] = "experimental.webNavigation.onBeforeRetarget";
22const char kOnCommitted[] = "experimental.webNavigation.onCommitted";
23const char kOnCompleted[] = "experimental.webNavigation.onCompleted";
24const char kOnDOMContentLoaded[] =
25    "experimental.webNavigation.onDOMContentLoaded";
26const char kOnErrorOccurred[] = "experimental.webNavigation.onErrorOccurred";
27
28}  // namespace extension_webnavigation_api_constants
29