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

Unified Diff: content/common/mojo/service_registry_impl.cc

Issue 1882423004: Move shell service to toplevel shell namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 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 | « content/common/mojo/service_registry_impl.h ('k') | content/common/mojo/static_loader.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/mojo/service_registry_impl.cc
diff --git a/content/common/mojo/service_registry_impl.cc b/content/common/mojo/service_registry_impl.cc
index b26c60990bed5340a32939e2b7aca464966ff46e..fe41cf7ba79a7a0cf2d331de527d68fe3acd484b 100644
--- a/content/common/mojo/service_registry_impl.cc
+++ b/content/common/mojo/service_registry_impl.cc
@@ -20,15 +20,14 @@ ServiceRegistryImpl::~ServiceRegistryImpl() {
}
}
-void ServiceRegistryImpl::Bind(
- mojo::shell::mojom::InterfaceProviderRequest request) {
+void ServiceRegistryImpl::Bind(shell::mojom::InterfaceProviderRequest request) {
binding_.Bind(std::move(request));
binding_.set_connection_error_handler(base::Bind(
&ServiceRegistryImpl::OnConnectionError, base::Unretained(this)));
}
void ServiceRegistryImpl::BindRemoteServiceProvider(
- mojo::shell::mojom::InterfaceProviderPtr service_provider) {
+ shell::mojom::InterfaceProviderPtr service_provider) {
CHECK(!remote_provider_);
remote_provider_ = std::move(service_provider);
while (!pending_connects_.empty()) {
« no previous file with comments | « content/common/mojo/service_registry_impl.h ('k') | content/common/mojo/static_loader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698