Chromium Code Reviews| Index: content/public/child/child_thread.h |
| diff --git a/content/public/child/child_thread.h b/content/public/child/child_thread.h |
| index 32611ac15ec3b32937a5c6f4d3bbb5a019aee1c6..e1199f696d263aaa1e1861eca42875834c311ddb 100644 |
| --- a/content/public/child/child_thread.h |
| +++ b/content/public/child/child_thread.h |
| @@ -10,6 +10,7 @@ |
| #include "base/logging.h" |
| #include "build/build_config.h" |
| #include "content/common/content_export.h" |
| +#include "content/public/common/associated_interfaces.mojom.h" |
| #include "ipc/ipc_sender.h" |
| #if defined(OS_WIN) |
| @@ -78,6 +79,10 @@ class CONTENT_EXPORT ChildThread : public IPC::Sender { |
| // Returns the InterfaceProvider that this process can use to bind |
| // interfaces exposed to it by the browser. |
| virtual shell::InterfaceProvider* GetRemoteInterfaces() = 0; |
| + |
| + // Returns a RemoteRouteProvider which exposes routed interfaces from the |
| + // browser. |
| + virtual mojom::RouteProvider* GetRemoteRouteProvider() = 0; |
|
Sam McNally
2016/09/09 05:33:15
Does this need to be public?
Ken Rockot(use gerrit already)
2016/09/09 16:01:50
Nope, removed!
|
| }; |
| } // namespace content |