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

Unified Diff: chrome/browser/extensions/api/context_menus/context_menus_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/context_menus/context_menus_api.h
diff --git a/chrome/browser/extensions/api/context_menus/context_menus_api.h b/chrome/browser/extensions/api/context_menus/context_menus_api.h
index 2e05f262769167b2f602868246afac23ec671972..d2097ff9810900db3b27a05db63cc6b2864a61be 100644
--- a/chrome/browser/extensions/api/context_menus/context_menus_api.h
+++ b/chrome/browser/extensions/api/context_menus/context_menus_api.h
@@ -17,7 +17,7 @@ class ContextMenusCreateFunction : public ChromeSyncExtensionFunction {
virtual ~ContextMenusCreateFunction() {}
// ExtensionFunction:
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
};
class ContextMenusUpdateFunction : public ChromeSyncExtensionFunction {
@@ -28,7 +28,7 @@ class ContextMenusUpdateFunction : public ChromeSyncExtensionFunction {
virtual ~ContextMenusUpdateFunction() {}
// ExtensionFunction:
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
};
class ContextMenusRemoveFunction : public ChromeSyncExtensionFunction {
@@ -39,7 +39,7 @@ class ContextMenusRemoveFunction : public ChromeSyncExtensionFunction {
virtual ~ContextMenusRemoveFunction() {}
// ExtensionFunction:
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
};
class ContextMenusRemoveAllFunction : public ChromeSyncExtensionFunction {
@@ -50,7 +50,7 @@ class ContextMenusRemoveAllFunction : public ChromeSyncExtensionFunction {
virtual ~ContextMenusRemoveAllFunction() {}
// ExtensionFunction:
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
};
} // namespace extensions

Powered by Google App Engine
This is Rietveld 408576698