| Index: content/common/mojo/mojo_shell_connection_impl.cc
|
| diff --git a/content/common/mojo/mojo_shell_connection_impl.cc b/content/common/mojo/mojo_shell_connection_impl.cc
|
| index 0bd2ccad75e167ab5b7a8ef5dd70f6332f5a62d8..e37231158f86b84ac70fd987dd43f084149e123e 100644
|
| --- a/content/common/mojo/mojo_shell_connection_impl.cc
|
| +++ b/content/common/mojo/mojo_shell_connection_impl.cc
|
| @@ -227,7 +227,7 @@ class MojoShellConnectionImpl::IOThreadContext
|
| shell::InterfaceRegistry* registry) override {
|
| DCHECK(io_thread_checker_.CalledOnValidThread());
|
| std::string remote_app = remote_identity.name();
|
| - if (remote_app == "mojo:shell") {
|
| + if (remote_app == "service:shell") {
|
| // Only expose the SCF interface to the shell.
|
| registry->AddInterface<shell::mojom::ServiceFactory>(this);
|
| return true;
|
| @@ -242,7 +242,7 @@ class MojoShellConnectionImpl::IOThreadContext
|
| }
|
| }
|
|
|
| - if (remote_identity.name() == "exe:content_browser" &&
|
| + if (remote_identity.name() == "service:content_browser" &&
|
| !has_browser_connection_) {
|
| has_browser_connection_ = true;
|
| registry->set_default_binder(default_browser_binder_);
|
|
|