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

Unified Diff: chrome/browser/extensions/api/management/management_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/management/management_api.h
diff --git a/chrome/browser/extensions/api/management/management_api.h b/chrome/browser/extensions/api/management/management_api.h
index c62fa4189d9546e0c81178491fc5bc16125ab85f..c2f26d93a8283b620f40beab712616bf8e6fde03 100644
--- a/chrome/browser/extensions/api/management/management_api.h
+++ b/chrome/browser/extensions/api/management/management_api.h
@@ -42,7 +42,7 @@ class ManagementGetAllFunction : public ManagementFunction {
virtual ~ManagementGetAllFunction() {}
// ExtensionFunction:
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
};
class ManagementGetFunction : public ManagementFunction {
@@ -53,7 +53,7 @@ class ManagementGetFunction : public ManagementFunction {
virtual ~ManagementGetFunction() {}
// ExtensionFunction:
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
};
class ManagementGetPermissionWarningsByIdFunction : public ManagementFunction {
@@ -65,7 +65,7 @@ class ManagementGetPermissionWarningsByIdFunction : public ManagementFunction {
virtual ~ManagementGetPermissionWarningsByIdFunction() {}
// ExtensionFunction:
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
};
class ManagementGetPermissionWarningsByManifestFunction
@@ -94,7 +94,7 @@ class ManagementLaunchAppFunction : public ManagementFunction {
virtual ~ManagementLaunchAppFunction() {}
// ExtensionFunction:
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
};
class ManagementSetEnabledFunction : public AsyncManagementFunction,

Powered by Google App Engine
This is Rietveld 408576698