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

Unified Diff: chrome/browser/extensions/api/content_settings/content_settings_api.h

Issue 12330089: JSON compiler to include "customBindings" in the function name. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 7 years, 10 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 | « no previous file | chrome/browser/extensions/api/content_settings/content_settings_api.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/api/content_settings/content_settings_api.h
===================================================================
--- chrome/browser/extensions/api/content_settings/content_settings_api.h (revision 182503)
+++ chrome/browser/extensions/api/content_settings/content_settings_api.h (working copy)
@@ -15,47 +15,48 @@
namespace extensions {
-class ContentSettingsClearFunction : public SyncExtensionFunction {
+class ContentSettingsContentSettingClearFunction
+ : public SyncExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("contentSettings.clear", CONTENTSETTINGS_CLEAR)
protected:
- virtual ~ContentSettingsClearFunction() {}
+ virtual ~ContentSettingsContentSettingClearFunction() {}
// ExtensionFunction:
virtual bool RunImpl() OVERRIDE;
};
-class ContentSettingsGetFunction : public SyncExtensionFunction {
+class ContentSettingsContentSettingGetFunction : public SyncExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("contentSettings.get", CONTENTSETTINGS_GET)
protected:
- virtual ~ContentSettingsGetFunction() {}
+ virtual ~ContentSettingsContentSettingGetFunction() {}
// ExtensionFunction:
virtual bool RunImpl() OVERRIDE;
};
-class ContentSettingsSetFunction : public SyncExtensionFunction {
+class ContentSettingsContentSettingSetFunction : public SyncExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("contentSettings.set", CONTENTSETTINGS_SET)
protected:
- virtual ~ContentSettingsSetFunction() {}
+ virtual ~ContentSettingsContentSettingSetFunction() {}
// ExtensionFunction:
virtual bool RunImpl() OVERRIDE;
};
-class ContentSettingsGetResourceIdentifiersFunction
+class ContentSettingsContentSettingGetResourceIdentifiersFunction
: public AsyncExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("contentSettings.getResourceIdentifiers",
CONTENTSETTINGS_GETRESOURCEIDENTIFIERS)
protected:
- virtual ~ContentSettingsGetResourceIdentifiersFunction() {}
+ virtual ~ContentSettingsContentSettingGetResourceIdentifiersFunction() {}
// ExtensionFunction:
virtual bool RunImpl() OVERRIDE;
« no previous file with comments | « no previous file | chrome/browser/extensions/api/content_settings/content_settings_api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698