| Index: content/public/child/child_thread.h
|
| diff --git a/content/public/child/child_thread.h b/content/public/child/child_thread.h
|
| index e8d9e351fe4835658a4676195be0a982079c6caf..9287ee8ac76df71640bf28fc954f72059dd05a65 100644
|
| --- a/content/public/child/child_thread.h
|
| +++ b/content/public/child/child_thread.h
|
| @@ -21,7 +21,7 @@ struct UserMetricsAction;
|
| }
|
|
|
| namespace service_manager {
|
| -class InterfaceProvider;
|
| +class Connector;
|
| class InterfaceRegistry;
|
| }
|
|
|
| @@ -75,9 +75,9 @@ class CONTENT_EXPORT ChildThread : public IPC::Sender {
|
| // to the browser.
|
| virtual service_manager::InterfaceRegistry* GetInterfaceRegistry() = 0;
|
|
|
| - // Returns the InterfaceProvider that this process can use to bind
|
| - // interfaces exposed to it by the browser.
|
| - virtual service_manager::InterfaceProvider* GetRemoteInterfaces() = 0;
|
| + // Returns a connector that can be used to bind interfaces exposed by other
|
| + // services.
|
| + virtual service_manager::Connector* GetConnector() = 0;
|
| };
|
|
|
| } // namespace content
|
|
|