Index: content/public/browser/render_process_host.h |
diff --git a/content/public/browser/render_process_host.h b/content/public/browser/render_process_host.h |
index ee650367fccb1cd2dcfc0f4a26ecc0e8ab6dd14f..1e951dc3dc2e6fd2962baf68c887f610c7ff0a9d 100644 |
--- a/content/public/browser/render_process_host.h |
+++ b/content/public/browser/render_process_host.h |
@@ -27,6 +27,7 @@ class BrowserContext; |
class BrowserMessageFilter; |
class RenderProcessHostObserver; |
class RenderWidgetHost; |
+class ServiceRegistry; |
class StoragePartition; |
struct GlobalRequestID; |
@@ -232,6 +233,12 @@ class CONTENT_EXPORT RenderProcessHost : public IPC::Sender, |
// have changed. |
virtual void NotifyTimezoneChange() = 0; |
+ // Returns the ServiceRegistry for this process. |
+ virtual ServiceRegistry* GetServiceRegistry() = 0; |
+ |
+ // Activates mojo for this process. |
+ virtual void ActivateMojo() = 0; |
darin (slow to review)
2014/06/18 00:09:28
It'd be nice to make ActivateMojo() a private impl
Sam McNally
2014/06/18 01:31:40
Done.
|
+ |
// Static management functions ----------------------------------------------- |
// Flag to run the renderer in process. This is primarily |