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

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

Issue 107893003: Make the renderer-side prerendering code use RenderFrames instead of RenderViews. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: creis review comments 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
===================================================================
--- content/browser/frame_host/frame_tree.h (revision 239602)
+++ content/browser/frame_host/frame_tree.h (working copy)
@@ -74,10 +74,10 @@
// Frame tree manipulation routines.
// TODO(creis): These should take in RenderFrameHost routing IDs.
- void AddFrame(int render_frame_host_id,
- int64 parent_frame_tree_node_id,
- int64 frame_id,
- const std::string& frame_name);
+ RenderFrameHostImpl* AddFrame(int render_frame_host_id,
+ int64 parent_frame_tree_node_id,
+ int64 frame_id,
+ const std::string& frame_name);
void RemoveFrame(int64 parent_frame_id, int64 frame_id);
void SetFrameUrl(int64 frame_id, const GURL& url);

Powered by Google App Engine
This is Rietveld 408576698