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

Unified Diff: content/browser/web_contents/web_contents_impl.h

Issue 30323002: [DRAFT] Create RenderFrameHostManager. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 years, 1 month 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/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.

Powered by Google App Engine
This is Rietveld 408576698