diff options
Diffstat (limited to 'content/public/browser')
-rw-r--r-- | content/public/browser/render_frame_host.h | 4 | ||||
-rw-r--r-- | content/public/browser/render_process_host.h | 4 | ||||
-rw-r--r-- | content/public/browser/render_view_host.h | 3 |
3 files changed, 3 insertions, 8 deletions
diff --git a/content/public/browser/render_frame_host.h b/content/public/browser/render_frame_host.h index 31f4d8d..ac6ba5a 100644 --- a/content/public/browser/render_frame_host.h +++ b/content/public/browser/render_frame_host.h @@ -21,7 +21,6 @@ class Value; namespace content { class RenderProcessHost; class RenderViewHost; -class ServiceRegistry; class SiteInstance; // The interface provides a communication conduit with a frame in the renderer. @@ -75,9 +74,6 @@ class CONTENT_EXPORT RenderFrameHost : public IPC::Listener, // Temporary until we get rid of RenderViewHost. virtual RenderViewHost* GetRenderViewHost() = 0; - // Returns the ServiceRegistry for this frame. - virtual ServiceRegistry* GetServiceRegistry() = 0; - private: // This interface should only be implemented inside content. friend class RenderFrameHostImpl; diff --git a/content/public/browser/render_process_host.h b/content/public/browser/render_process_host.h index b33a5b3..ee65036 100644 --- a/content/public/browser/render_process_host.h +++ b/content/public/browser/render_process_host.h @@ -27,7 +27,6 @@ class BrowserContext; class BrowserMessageFilter; class RenderProcessHostObserver; class RenderWidgetHost; -class ServiceRegistry; class StoragePartition; struct GlobalRequestID; @@ -233,9 +232,6 @@ class CONTENT_EXPORT RenderProcessHost : public IPC::Sender, // have changed. virtual void NotifyTimezoneChange() = 0; - // Returns the ServiceRegistry for this process. - virtual ServiceRegistry* GetServiceRegistry() = 0; - // Static management functions ----------------------------------------------- // Flag to run the renderer in process. This is primarily diff --git a/content/public/browser/render_view_host.h b/content/public/browser/render_view_host.h index fcc81c0..559c0ef 100644 --- a/content/public/browser/render_view_host.h +++ b/content/public/browser/render_view_host.h @@ -210,6 +210,9 @@ class CONTENT_EXPORT RenderViewHost : virtual public RenderWidgetHost { virtual void GetAudioOutputControllers( const GetAudioOutputControllersCallback& callback) const = 0; + // Sets the mojo handle for WebUI pages. + virtual void SetWebUIHandle(mojo::ScopedMessagePipeHandle handle) = 0; + // Notify the render view host to select the word around the caret. virtual void SelectWordAroundCaret() = 0; |