Index: mash/quick_launch/quick_launch.cc |
diff --git a/mash/quick_launch/quick_launch.cc b/mash/quick_launch/quick_launch.cc |
index 1128266963ea240139cdabb6f897df7da1c7d9b0..0c193345b761dd48e699e05ed8d75f4a47e357d9 100644 |
--- a/mash/quick_launch/quick_launch.cc |
+++ b/mash/quick_launch/quick_launch.cc |
@@ -174,8 +174,9 @@ void QuickLaunch::OnStart(const shell::Identity& identity) { |
Launch(mojom::kWindow, mojom::LaunchMode::MAKE_NEW); |
} |
-bool QuickLaunch::OnConnect(shell::Connection* connection) { |
- connection->AddInterface<mojom::Launchable>(this); |
+bool QuickLaunch::OnConnect(const shell::Identity& remote_identity, |
+ shell::InterfaceRegistry* registry) { |
+ registry->AddInterface<mojom::Launchable>(this); |
return true; |
} |