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

Unified Diff: content/browser/frame_host/frame_tree.h

Issue 118443008: Support cross-process navigations in a single subframe RenderFrameHost. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Minor cleanup Created 7 years 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/frame_host/frame_tree.h
diff --git a/content/browser/frame_host/frame_tree.h b/content/browser/frame_host/frame_tree.h
index 2ee1cdd7552f63c6c95a5c051bc62a60d0fe3f62..8aa85bb0e72db66510e729eff46e479212bc2d15 100644
--- a/content/browser/frame_host/frame_tree.h
+++ b/content/browser/frame_host/frame_tree.h
@@ -124,15 +124,15 @@ class CONTENT_EXPORT FrameTree {
void RegisterRenderFrameHost(RenderFrameHostImpl* render_frame_host);
void UnregisterRenderFrameHost(RenderFrameHostImpl* render_frame_host);
+ // Returns the FrameTreeNode with the given renderer-specific |frame_id|.
+ // TODO(creis): Make this private and replace this with a version that takes
+ // in a routing ID.
+ FrameTreeNode* FindByFrameID(int64 frame_id);
+
private:
typedef std::pair<RenderViewHostImpl*, int> RenderViewHostRefCount;
typedef base::hash_map<int, RenderViewHostRefCount> RenderViewHostMap;
- // Returns the FrameTreeNode with the given renderer-specific |frame_id|.
- // For internal use only.
- // TODO(creis): Replace this with a version that takes in a routing ID.
- FrameTreeNode* FindByFrameID(int64 frame_id);
-
// These delegates are installed into all the RenderViewHosts and
// RenderFrameHosts that we create.
RenderFrameHostDelegate* render_frame_delegate_;
« no previous file with comments | « no previous file | content/browser/frame_host/frame_tree.cc » ('j') | content/browser/frame_host/navigation_controller_impl.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698