OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/extensions/api/web_navigation/web_navigation_api_consta
nts.h" | 5 #include "chrome/browser/extensions/api/web_navigation/web_navigation_api_consta
nts.h" |
6 | 6 |
7 namespace extensions { | 7 namespace extensions { |
8 | 8 |
9 namespace web_navigation_api_constants { | 9 namespace web_navigation_api_constants { |
10 | 10 |
(...skipping 10 matching lines...) Expand all Loading... |
21 const char kOnBeforeNavigate[] = "webNavigation.onBeforeNavigate"; | 21 const char kOnBeforeNavigate[] = "webNavigation.onBeforeNavigate"; |
22 const char kOnCommitted[] = "webNavigation.onCommitted"; | 22 const char kOnCommitted[] = "webNavigation.onCommitted"; |
23 const char kOnCompleted[] = "webNavigation.onCompleted"; | 23 const char kOnCompleted[] = "webNavigation.onCompleted"; |
24 const char kOnCreatedNavigationTarget[] = | 24 const char kOnCreatedNavigationTarget[] = |
25 "webNavigation.onCreatedNavigationTarget"; | 25 "webNavigation.onCreatedNavigationTarget"; |
26 const char kOnDOMContentLoaded[] = | 26 const char kOnDOMContentLoaded[] = |
27 "webNavigation.onDOMContentLoaded"; | 27 "webNavigation.onDOMContentLoaded"; |
28 const char kOnErrorOccurred[] = "webNavigation.onErrorOccurred"; | 28 const char kOnErrorOccurred[] = "webNavigation.onErrorOccurred"; |
29 const char kOnReferenceFragmentUpdated[] = | 29 const char kOnReferenceFragmentUpdated[] = |
30 "webNavigation.onReferenceFragmentUpdated"; | 30 "webNavigation.onReferenceFragmentUpdated"; |
| 31 const char kOnTabReplaced[] = "webNavigation.onTabReplaced"; |
31 | 32 |
32 } // namespace web_navigation_api_constants | 33 } // namespace web_navigation_api_constants |
33 | 34 |
34 } // namespace extensions | 35 } // namespace extensions |
OLD | NEW |