Index: services/shell/public/cpp/lib/connection_impl.h |
diff --git a/services/shell/public/cpp/lib/connection_impl.h b/services/shell/public/cpp/lib/connection_impl.h |
index b0ec989d58885c0c044086b1b78ffbae88328160..78cfed76f026568062d4cd904e0d6f6505bd9fb8 100644 |
--- a/services/shell/public/cpp/lib/connection_impl.h |
+++ b/services/shell/public/cpp/lib/connection_impl.h |
@@ -52,6 +52,7 @@ class ConnectionImpl : public Connection { |
void AddConnectionCompletedClosure(const mojo::Closure& callback) override; |
bool AllowsInterface(const std::string& interface_name) const override; |
InterfaceRegistry* GetInterfaceRegistry() override; |
+ RemoteInterfaceRegistry* GetRemoteInterfaceRegistry() override; |
base::WeakPtr<Connection> GetWeakPtr() override; |
void OnConnectionCompleted(shell::mojom::ConnectResult result, |
@@ -67,6 +68,7 @@ class ConnectionImpl : public Connection { |
std::vector<mojo::Closure> connection_completed_callbacks_; |
InterfaceRegistry interfaces_; |
+ RemoteInterfaceRegistry remote_interfaces_; |
const CapabilityRequest capability_request_; |
const bool allow_all_interfaces_; |