| Index: mash/init/init.cc
|
| diff --git a/mash/init/init.cc b/mash/init/init.cc
|
| index eb633225463a9f0f53a2f0625d85ce8225ca758e..0a5506da9434c17050ef7c9a638c54c48c0ce7c7 100644
|
| --- a/mash/init/init.cc
|
| +++ b/mash/init/init.cc
|
| @@ -23,8 +23,9 @@ void Init::OnStart(const shell::Identity& identity) {
|
| StartLogin();
|
| }
|
|
|
| -bool Init::OnConnect(shell::Connection* connection) {
|
| - connection->AddInterface<mojom::Init>(this);
|
| +bool Init::OnConnect(const shell::Identity& remote_identity,
|
| + shell::InterfaceRegistry* registry) {
|
| + registry->AddInterface<mojom::Init>(this);
|
| return true;
|
| }
|
|
|
|
|