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

Unified Diff: services/shell/public/cpp/lib/interface_registry.cc

Issue 2111353002: Move content's shell connections to the IO thread (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 6 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: services/shell/public/cpp/lib/interface_registry.cc
diff --git a/services/shell/public/cpp/lib/interface_registry.cc b/services/shell/public/cpp/lib/interface_registry.cc
index ebfaddd35ace806392e426ee68569432371092bd..57374354e127aae7a99c89e6251f55d24556c28d 100644
--- a/services/shell/public/cpp/lib/interface_registry.cc
+++ b/services/shell/public/cpp/lib/interface_registry.cc
@@ -61,6 +61,8 @@ void InterfaceRegistry::GetInterface(const mojo::String& interface_name,
<< "interface: " << interface_name << " connection_name:"
<< connection_->GetConnectionName() << " remote_name:"
<< connection_->GetRemoteIdentity().name();
+ } else if (!default_binder_.is_null()) {
+ default_binder_.Run(interface_name, std::move(handle));
}
}

Powered by Google App Engine
This is Rietveld 408576698