| Index: content/browser/web_contents/web_contents_impl.h
|
| diff --git a/content/browser/web_contents/web_contents_impl.h b/content/browser/web_contents/web_contents_impl.h
|
| index dcc506ae294d2ff81fe1c9ddbf01816cc66c8d6c..e0048cf16fd1042b35e71b39a877d3ca5ddfe967 100644
|
| --- a/content/browser/web_contents/web_contents_impl.h
|
| +++ b/content/browser/web_contents/web_contents_impl.h
|
| @@ -275,8 +275,9 @@ class CONTENT_EXPORT WebContentsImpl
|
| // RenderViewHostDelegate ----------------------------------------------------
|
|
|
| virtual RenderViewHostDelegateView* GetDelegateView() OVERRIDE;
|
| - virtual RenderViewHostDelegate::RendererManagement*
|
| - GetRendererManagementDelegate() OVERRIDE;
|
| + // TODO(creis): This should take in a FrameTreeNode to know which node's
|
| + // render manager to return. For now, we just return the root's.
|
| + virtual RenderViewHostManager* GetRenderManager() const OVERRIDE;
|
| virtual bool OnMessageReceived(RenderViewHost* render_view_host,
|
| const IPC::Message& message) OVERRIDE;
|
| virtual const GURL& GetURL() const OVERRIDE;
|
| @@ -759,10 +760,6 @@ class CONTENT_EXPORT WebContentsImpl
|
|
|
| void SetEncoding(const std::string& encoding);
|
|
|
| - // TODO(creis): This should take in a FrameTreeNode to know which node's
|
| - // render manager to return. For now, we just return the root's.
|
| - RenderViewHostManager* GetRenderManager() const;
|
| -
|
| RenderViewHostImpl* GetRenderViewHostImpl();
|
|
|
| // Removes browser plugin embedder if there is one.
|
|
|