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

Unified Diff: extensions/browser/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
« no previous file with comments | « extensions/browser/extension_function.h ('k') | extensions/browser/quota_service_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/browser/extension_function.cc
diff --git a/extensions/browser/extension_function.cc b/extensions/browser/extension_function.cc
index accc12d4e4139be6003eb2323e4c32dfcba3c3ad..7e9a19499b49d84a05728609387b98cad2dca407 100644
--- a/extensions/browser/extension_function.cc
+++ b/extensions/browser/extension_function.cc
@@ -375,8 +375,9 @@ SyncExtensionFunction::SyncExtensionFunction() {
SyncExtensionFunction::~SyncExtensionFunction() {
}
-void SyncExtensionFunction::Run() {
- SendResponse(RunImpl());
+bool SyncExtensionFunction::RunImpl() {
+ SendResponse(RunSync());
+ return true;
}
SyncIOThreadExtensionFunction::SyncIOThreadExtensionFunction() {
@@ -385,6 +386,7 @@ SyncIOThreadExtensionFunction::SyncIOThreadExtensionFunction() {
SyncIOThreadExtensionFunction::~SyncIOThreadExtensionFunction() {
}
-void SyncIOThreadExtensionFunction::Run() {
- SendResponse(RunImpl());
+bool SyncIOThreadExtensionFunction::RunImpl() {
+ SendResponse(RunSync());
+ return true;
}
« no previous file with comments | « extensions/browser/extension_function.h ('k') | extensions/browser/quota_service_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698