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

Unified Diff: extensions/browser/extension_function.cc

Issue 2204363002: [Extensions] Remove SyncIOThreadExtensionFunction (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: lazyboy@'s Created 4 years, 4 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') | no next file » | 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 49a005bf93f39ce8f7b50488e846c499cfbffbf3..255f2c63abaf35e497bae1096df7a8b1ba038b95 100644
--- a/extensions/browser/extension_function.cc
+++ b/extensions/browser/extension_function.cc
@@ -641,20 +641,3 @@ ExtensionFunction::ResponseAction SyncExtensionFunction::Run() {
bool SyncExtensionFunction::ValidationFailure(SyncExtensionFunction* function) {
return false;
}
-
-SyncIOThreadExtensionFunction::SyncIOThreadExtensionFunction() {
-}
-
-SyncIOThreadExtensionFunction::~SyncIOThreadExtensionFunction() {
-}
-
-ExtensionFunction::ResponseAction SyncIOThreadExtensionFunction::Run() {
- return RespondNow(RunSync() ? ArgumentList(std::move(results_))
- : Error(error_));
-}
-
-// static
-bool SyncIOThreadExtensionFunction::ValidationFailure(
- SyncIOThreadExtensionFunction* function) {
- return false;
-}
« no previous file with comments | « extensions/browser/extension_function.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698