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

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

Issue 252653002: Rename (Chrome)SyncExtensionFunction::RunImpl to RunSync so that the RunImpl (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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
Index: chrome/browser/extensions/api/content_settings/content_settings_api.h
diff --git a/chrome/browser/extensions/api/content_settings/content_settings_api.h b/chrome/browser/extensions/api/content_settings/content_settings_api.h
index b2e3beb22370ec69c248c12084963d91158a4afe..9725fb759799f5292fd35f0a2c06f4867bcc443f 100644
--- a/chrome/browser/extensions/api/content_settings/content_settings_api.h
+++ b/chrome/browser/extensions/api/content_settings/content_settings_api.h
@@ -24,7 +24,7 @@ class ContentSettingsContentSettingClearFunction
virtual ~ContentSettingsContentSettingClearFunction() {}
// ExtensionFunction:
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
};
class ContentSettingsContentSettingGetFunction
@@ -36,7 +36,7 @@ class ContentSettingsContentSettingGetFunction
virtual ~ContentSettingsContentSettingGetFunction() {}
// ExtensionFunction:
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
};
class ContentSettingsContentSettingSetFunction
@@ -48,7 +48,7 @@ class ContentSettingsContentSettingSetFunction
virtual ~ContentSettingsContentSettingSetFunction() {}
// ExtensionFunction:
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
};
class ContentSettingsContentSettingGetResourceIdentifiersFunction
@@ -61,7 +61,7 @@ class ContentSettingsContentSettingGetResourceIdentifiersFunction
virtual ~ContentSettingsContentSettingGetResourceIdentifiersFunction() {}
// ExtensionFunction:
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
private:
FRIEND_TEST_ALL_PREFIXES(ExtensionApiTest,

Powered by Google App Engine
This is Rietveld 408576698