summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/extension_webnavigation_api.h
diff options
context:
space:
mode:
authorjochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-01 09:01:46 +0000
committerjochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-01 09:01:46 +0000
commit4ea86195ed973835a5078b8a31498b056977c3d2 (patch)
tree4ae39f03efc6bfa375dac56a97e80bc38d1dbab5 /chrome/browser/extensions/extension_webnavigation_api.h
parent2e2d01ae1be18146943697eac47c0cd6552e5f95 (diff)
downloadchromium_src-4ea86195ed973835a5078b8a31498b056977c3d2.zip
chromium_src-4ea86195ed973835a5078b8a31498b056977c3d2.tar.gz
chromium_src-4ea86195ed973835a5078b8a31498b056977c3d2.tar.bz2
Move webNavigation out of experimental.
BUG=60100 TEST=none Review URL: http://codereview.chromium.org/8101004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103632 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/extensions/extension_webnavigation_api.h')
-rw-r--r--chrome/browser/extensions/extension_webnavigation_api.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/extensions/extension_webnavigation_api.h b/chrome/browser/extensions/extension_webnavigation_api.h
index bc5c8c9..92d0985 100644
--- a/chrome/browser/extensions/extension_webnavigation_api.h
+++ b/chrome/browser/extensions/extension_webnavigation_api.h
@@ -225,14 +225,14 @@ class ExtensionWebNavigationEventRouter : public NotificationObserver {
class GetFrameFunction : public SyncExtensionFunction {
virtual ~GetFrameFunction() {}
virtual bool RunImpl() OVERRIDE;
- DECLARE_EXTENSION_FUNCTION_NAME("experimental.webNavigation.getFrame")
+ DECLARE_EXTENSION_FUNCTION_NAME("webNavigation.getFrame")
};
// API function that returns the states of all frames in a given tab.
class GetAllFramesFunction : public SyncExtensionFunction {
virtual ~GetAllFramesFunction() {}
virtual bool RunImpl() OVERRIDE;
- DECLARE_EXTENSION_FUNCTION_NAME("experimental.webNavigation.getAllFrames")
+ DECLARE_EXTENSION_FUNCTION_NAME("webNavigation.getAllFrames")
};
#endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_WEBNAVIGATION_API_H_