Index: chrome/app/mash/mash_runner.cc |
diff --git a/chrome/app/mash/mash_runner.cc b/chrome/app/mash/mash_runner.cc |
index d471c59e3d19597bb97a7b8cf3c23a977ac84bf2..862e1ef861b12a91927afa1a13dd8a86e6a4a800 100644 |
--- a/chrome/app/mash/mash_runner.cc |
+++ b/chrome/app/mash/mash_runner.cc |
@@ -53,8 +53,9 @@ class DefaultService : public shell::Service, |
~DefaultService() override {} |
// shell::Service: |
- bool OnConnect(shell::Connection* connection) override { |
- connection->AddInterface<ServiceFactory>(this); |
+ bool OnConnect(const shell::Identity& remote_identity, |
+ shell::InterfaceRegistry* registry) override { |
+ registry->AddInterface<ServiceFactory>(this); |
return true; |
} |