| 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 aeeeebda43542495c94e91b29c4c7f71db477280..8002b87d8e37b4ab9226a6ca4022012dd19f4f16 100644
|
| --- a/content/browser/web_contents/web_contents_impl.h
|
| +++ b/content/browser/web_contents/web_contents_impl.h
|
| @@ -155,6 +155,10 @@ class CONTENT_EXPORT WebContentsImpl
|
| // TODO(creis): Remove this now that we can get to it via FrameTreeNode.
|
| RenderFrameHostManager* GetRenderManagerForTesting();
|
|
|
| + // 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.
|
| + RenderFrameHostManager* GetRenderManager() const;
|
| +
|
| // Returns the outer WebContents of this WebContents if any.
|
| // Note that without --site-per-process, this will return the WebContents
|
| // of the BrowserPluginEmbedder, if |this| is a guest.
|
| @@ -1110,10 +1114,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.
|
| - RenderFrameHostManager* GetRenderManager() const;
|
| -
|
| // Removes browser plugin embedder if there is one.
|
| void RemoveBrowserPluginEmbedder();
|
|
|
|
|