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

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

Issue 2474323002: Implement WebContentsViewChildFrame::TakeFocus. (Closed)
Patch Set: Conflicted with my own cl https://codereview.chromium.org/2455133005/ Created 4 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 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();

Powered by Google App Engine
This is Rietveld 408576698