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

Unified Diff: chrome/browser/extensions/extension_content_settings_api.h

Issue 8071025: Move contentSettings extension API out of experimental (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix Created 9 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/common/extensions/api/extension_api.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/extension_content_settings_api.h
diff --git a/chrome/browser/extensions/extension_content_settings_api.h b/chrome/browser/extensions/extension_content_settings_api.h
index 0330e5dcbfe6dc569b2a98e77ce87c94cb9cdd14..6721d67ae78d8d3c886f3d132f96a1acf7b8511a 100644
--- a/chrome/browser/extensions/extension_content_settings_api.h
+++ b/chrome/browser/extensions/extension_content_settings_api.h
@@ -17,29 +17,25 @@ class PluginGroup;
class ClearContentSettingsFunction : public SyncExtensionFunction {
public:
virtual bool RunImpl();
- DECLARE_EXTENSION_FUNCTION_NAME(
- "experimental.contentSettings.clear")
+ DECLARE_EXTENSION_FUNCTION_NAME("contentSettings.clear")
};
class GetContentSettingFunction : public SyncExtensionFunction {
public:
virtual bool RunImpl();
- DECLARE_EXTENSION_FUNCTION_NAME(
- "experimental.contentSettings.get")
+ DECLARE_EXTENSION_FUNCTION_NAME("contentSettings.get")
};
class SetContentSettingFunction : public SyncExtensionFunction {
public:
virtual bool RunImpl();
- DECLARE_EXTENSION_FUNCTION_NAME(
- "experimental.contentSettings.set")
+ DECLARE_EXTENSION_FUNCTION_NAME("contentSettings.set")
};
class GetResourceIdentifiersFunction : public AsyncExtensionFunction {
public:
virtual bool RunImpl();
- DECLARE_EXTENSION_FUNCTION_NAME(
- "experimental.contentSettings.getResourceIdentifiers")
+ DECLARE_EXTENSION_FUNCTION_NAME("contentSettings.getResourceIdentifiers")
private:
FRIEND_TEST_ALL_PREFIXES(ExtensionApiTest,
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/common/extensions/api/extension_api.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698