| Index: mash/session/session.cc
|
| diff --git a/mash/session/session.cc b/mash/session/session.cc
|
| index c53e02af3937b9edbaff9fb811b97af8cfc27b93..8b137576a2d7d469645e871f51779d13ae881e3e 100644
|
| --- a/mash/session/session.cc
|
| +++ b/mash/session/session.cc
|
| @@ -34,8 +34,9 @@ void Session::OnStart(const shell::Identity& identity) {
|
| StartQuickLaunch();
|
| }
|
|
|
| -bool Session::OnConnect(shell::Connection* connection) {
|
| - connection->AddInterface<mojom::Session>(this);
|
| +bool Session::OnConnect(const shell::Identity& remote_identity,
|
| + shell::InterfaceRegistry* registry) {
|
| + registry->AddInterface<mojom::Session>(this);
|
| return true;
|
| }
|
|
|
|
|