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

Unified Diff: chrome/browser/extensions/chrome_extension_function.cc

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.cc
diff --git a/chrome/browser/extensions/chrome_extension_function.cc b/chrome/browser/extensions/chrome_extension_function.cc
index f7c6c594398a4296db09b6bd81c86e257c247d4a..24ccfc416791ddde803ef3c569201eba56b4b679 100644
--- a/chrome/browser/extensions/chrome_extension_function.cc
+++ b/chrome/browser/extensions/chrome_extension_function.cc
@@ -109,6 +109,9 @@ ChromeAsyncExtensionFunction::~ChromeAsyncExtensionFunction() {}
ChromeSyncExtensionFunction::ChromeSyncExtensionFunction() {}
-void ChromeSyncExtensionFunction::Run() { SendResponse(RunImpl()); }
+bool ChromeSyncExtensionFunction::RunImpl() {
+ SendResponse(RunSync());
+ return true;
+}
ChromeSyncExtensionFunction::~ChromeSyncExtensionFunction() {}
« no previous file with comments | « chrome/browser/extensions/chrome_extension_function.h ('k') | chrome/browser/infobars/infobar_extension_api.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698