Index: services/ui/test_ime/main.cc |
diff --git a/services/ui/test_ime/main.cc b/services/ui/test_ime/main.cc |
index f52f6206bf371f6891182b58a36220b136b8ab37..db1f1a47d1fbd477b8ce0a50869c06542e8fe10d 100644 |
--- a/services/ui/test_ime/main.cc |
+++ b/services/ui/test_ime/main.cc |
@@ -20,8 +20,9 @@ class TestIME : public shell::Service, |
private: |
// shell::Service: |
void OnStart(const shell::Identity& identity) override {} |
- bool OnConnect(shell::Connection* connection) override { |
- connection->AddInterface<mojom::IMEDriver>(this); |
+ bool OnConnect(const shell::Identity& remote_identity, |
+ shell::InterfaceRegistry* registry) override { |
+ registry->AddInterface<mojom::IMEDriver>(this); |
return true; |
} |