Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(320)

Side by Side Diff: chrome/browser/extensions/api/web_navigation/web_navigation_api_constants.cc

Issue 10692097: Introduce webNavigation.onTabReplaced event that is fired when a tab from instant or prerender repl… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698