| 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 2f55450eb1248dba88db5f44fdb629a91b686613..0a5f9743539edcdc999d9fef36b3e95985e19e6a 100644
|
| --- a/content/browser/mojo/mojo_app_connection_impl.cc
|
| +++ b/content/browser/mojo/mojo_app_connection_impl.cc
|
| @@ -16,7 +16,7 @@ namespace content {
|
| const char kBrowserMojoAppUrl[] = "system:content_browser";
|
|
|
| namespace {
|
| -void OnGotContentHandlerID(uint32_t content_handler_id) {}
|
| +void OnGotRemoteIDs(uint32_t remote_id, uint32_t content_handler_id) {}
|
| } // namespace
|
|
|
| // static
|
| @@ -32,7 +32,7 @@ MojoAppConnectionImpl::MojoAppConnectionImpl(const GURL& url,
|
| MojoShellContext::ConnectToApplication(
|
| url, requestor_url, mojo::GetProxy(&services_),
|
| mojo::ServiceProviderPtr(), mojo::shell::GetPermissiveCapabilityFilter(),
|
| - base::Bind(&OnGotContentHandlerID));
|
| + base::Bind(&OnGotRemoteIDs));
|
| }
|
|
|
| MojoAppConnectionImpl::~MojoAppConnectionImpl() {
|
|
|