| Index: content/browser/mojo/mojo_app_connection_impl.cc
|
| diff --git a/content/browser/mojo/mojo_app_connection_impl.cc b/content/browser/mojo/mojo_app_connection_impl.cc
|
| index 8e4cd8c5f66a1407e20435d6fb58662351c8add6..582da64dc5d7538ebc57120ed69717aeadc9788c 100644
|
| --- a/content/browser/mojo/mojo_app_connection_impl.cc
|
| +++ b/content/browser/mojo/mojo_app_connection_impl.cc
|
| @@ -15,8 +15,9 @@ namespace content {
|
| const char kBrowserMojoAppUrl[] = "system:content_browser";
|
|
|
| namespace {
|
| -void OnGotInstanceID(mojo::shell::mojom::ConnectResult result,
|
| - const std::string& user_id, uint32_t remote_id) {}
|
| +void OnGotInstanceID(shell::mojom::ConnectResult result,
|
| + const std::string& user_id,
|
| + uint32_t remote_id) {}
|
| } // namespace
|
|
|
| // static
|
| @@ -34,7 +35,7 @@ MojoAppConnectionImpl::MojoAppConnectionImpl(
|
| const std::string& requestor_name) {
|
| MojoShellContext::ConnectToApplication(
|
| user_id, name, requestor_name, mojo::GetProxy(&interfaces_),
|
| - mojo::shell::mojom::InterfaceProviderPtr(), base::Bind(&OnGotInstanceID));
|
| + shell::mojom::InterfaceProviderPtr(), base::Bind(&OnGotInstanceID));
|
| }
|
|
|
| MojoAppConnectionImpl::~MojoAppConnectionImpl() {
|
|
|