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

Unified Diff: chrome/browser/extensions/api/developer_private/developer_private_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: fix bookmarks 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/developer_private/developer_private_api.h
diff --git a/chrome/browser/extensions/api/developer_private/developer_private_api.h b/chrome/browser/extensions/api/developer_private/developer_private_api.h
index 9d0e0f380703fd8a128895bf6b4517fbcfc29136..41ce8e437004bebf79947f62c9e60580bbd37327 100644
--- a/chrome/browser/extensions/api/developer_private/developer_private_api.h
+++ b/chrome/browser/extensions/api/developer_private/developer_private_api.h
@@ -149,7 +149,7 @@ class DeveloperPrivateAutoUpdateFunction : public ChromeSyncExtensionFunction {
virtual ~DeveloperPrivateAutoUpdateFunction();
// ExtensionFunction:
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
};
class DeveloperPrivateGetItemsInfoFunction
@@ -202,7 +202,7 @@ class DeveloperPrivateInspectFunction : public ChromeSyncExtensionFunction {
virtual ~DeveloperPrivateInspectFunction();
// ExtensionFunction:
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
};
class DeveloperPrivateAllowFileAccessFunction
@@ -215,7 +215,7 @@ class DeveloperPrivateAllowFileAccessFunction
virtual ~DeveloperPrivateAllowFileAccessFunction();
// ExtensionFunction:
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
};
class DeveloperPrivateAllowIncognitoFunction
@@ -228,7 +228,7 @@ class DeveloperPrivateAllowIncognitoFunction
virtual ~DeveloperPrivateAllowIncognitoFunction();
// ExtensionFunction:
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
};
class DeveloperPrivateReloadFunction : public ChromeSyncExtensionFunction {
@@ -240,7 +240,7 @@ class DeveloperPrivateReloadFunction : public ChromeSyncExtensionFunction {
virtual ~DeveloperPrivateReloadFunction();
// ExtensionFunction:
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
};
class DeveloperPrivateShowPermissionsDialogFunction
@@ -255,7 +255,7 @@ class DeveloperPrivateShowPermissionsDialogFunction
virtual ~DeveloperPrivateShowPermissionsDialogFunction();
// ExtensionFunction:
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
// Overridden from ExtensionInstallPrompt::Delegate
virtual void InstallUIProceed() OVERRIDE;
@@ -281,7 +281,7 @@ class DeveloperPrivateEnableFunction
void OnRequirementsChecked(std::string extension_id,
std::vector<std::string> requirements_errors);
// ExtensionFunction:
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
private:
scoped_ptr<RequirementsChecker> requirements_checker_;
@@ -370,7 +370,7 @@ class DeveloperPrivateIsProfileManagedFunction
virtual ~DeveloperPrivateIsProfileManagedFunction();
// ExtensionFunction:
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
};
class DeveloperPrivateLoadDirectoryFunction

Powered by Google App Engine
This is Rietveld 408576698