| OLD | NEW |
| (Empty) |
| 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 | |
| 7 namespace extension_webnavigation_api_constants { | |
| 8 | |
| 9 const char kErrorKey[] = "error"; | |
| 10 const char kErrorOccurredKey[] = "errorOccurred"; | |
| 11 const char kFrameIdKey[] = "frameId"; | |
| 12 const char kSourceTabIdKey[] = "sourceTabId"; | |
| 13 const char kSourceFrameIdKey[] = "sourceFrameId"; | |
| 14 const char kTabIdKey[] = "tabId"; | |
| 15 const char kTimeStampKey[] = "timeStamp"; | |
| 16 const char kTransitionTypeKey[] = "transitionType"; | |
| 17 const char kTransitionQualifiersKey[] = "transitionQualifiers"; | |
| 18 const char kUrlKey[] = "url"; | |
| 19 | |
| 20 const char kOnBeforeNavigate[] = "webNavigation.onBeforeNavigate"; | |
| 21 const char kOnCommitted[] = "webNavigation.onCommitted"; | |
| 22 const char kOnCompleted[] = "webNavigation.onCompleted"; | |
| 23 const char kOnCreatedNavigationTarget[] = | |
| 24 "webNavigation.onCreatedNavigationTarget"; | |
| 25 const char kOnDOMContentLoaded[] = | |
| 26 "webNavigation.onDOMContentLoaded"; | |
| 27 const char kOnErrorOccurred[] = "webNavigation.onErrorOccurred"; | |
| 28 const char kOnReferenceFragmentUpdated[] = | |
| 29 "webNavigation.onReferenceFragmentUpdated"; | |
| 30 | |
| 31 } // namespace extension_webnavigation_api_constants | |
| OLD | NEW |