| 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,
|
|
|