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

Unified Diff: chrome/browser/extensions/chrome_extension_function.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/chrome_extension_function.h
diff --git a/chrome/browser/extensions/chrome_extension_function.h b/chrome/browser/extensions/chrome_extension_function.h
index 07e7346db8c911b660b796964c6368548f6bff86..40fc5391c0b49ea8ca68a9fdd33a9008e82676a5 100644
--- a/chrome/browser/extensions/chrome_extension_function.h
+++ b/chrome/browser/extensions/chrome_extension_function.h
@@ -68,7 +68,9 @@ class ChromeSyncExtensionFunction : public ChromeAsyncExtensionFunction {
public:
ChromeSyncExtensionFunction();
- virtual void Run() OVERRIDE;
+ virtual bool RunImpl() OVERRIDE;
+
+ virtual bool RunSync() = 0;
protected:
virtual ~ChromeSyncExtensionFunction();

Powered by Google App Engine
This is Rietveld 408576698