| Index: mash/browser/browser.cc
|
| diff --git a/mash/browser/browser.cc b/mash/browser/browser.cc
|
| index bf2c4a6ae8ee3fc3a5473dcc2248d9d1c22e749f..1f74ce84bcd494016335dbe985c7de5a535df259 100644
|
| --- a/mash/browser/browser.cc
|
| +++ b/mash/browser/browser.cc
|
| @@ -874,8 +874,9 @@ void Browser::OnStart(const shell::Identity& identity) {
|
| views::WindowManagerConnection::Create(connector(), identity);
|
| }
|
|
|
| -bool Browser::OnConnect(shell::Connection* connection) {
|
| - connection->AddInterface<mojom::Launchable>(this);
|
| +bool Browser::OnConnect(const shell::Identity& remote_identity,
|
| + shell::InterfaceRegistry* registry) {
|
| + registry->AddInterface<mojom::Launchable>(this);
|
| return true;
|
| }
|
|
|
|
|