Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(597)

Unified Diff: content/public/child/child_thread.h

Issue 2310563002: Adds routed interface support between RenderFrameHost and RenderFrame (Closed)
Patch Set: . Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698