Index: content/browser/frame_host/render_frame_host_manager.h |
diff --git a/content/browser/frame_host/render_frame_host_manager.h b/content/browser/frame_host/render_frame_host_manager.h |
index 7b5ec814e925f51b55e5c73bee985f068d0065fa..66a5eae88f132242cd248c6ec488d90d5f1c026a 100644 |
--- a/content/browser/frame_host/render_frame_host_manager.h |
+++ b/content/browser/frame_host/render_frame_host_manager.h |
@@ -251,14 +251,11 @@ class CONTENT_EXPORT RenderFrameHostManager : public NotificationObserver { |
// Called when a renderer sets its opener to null. |
void DidDisownOpener(RenderFrameHost* render_frame_host); |
- // Helper method to create and initialize a RenderFrameHost. If |swapped_out| |
- // is true, it will be initially placed on the swapped out hosts list. |
+ // Helper method to create and initialize a RenderFrameHost. |
// Returns the routing id of the *view* associated with the frame. |
int CreateRenderFrame(SiteInstance* instance, |
Charlie Reis
2014/10/08 21:21:13
Thanks for updating the comment. Can you also men
|
int opener_route_id, |
- bool swapped_out, |
- bool for_main_frame_navigation, |
- bool hidden); |
+ int flags); |
// Helper method to create and initialize a RenderFrameProxyHost and return |
// its routing id. |
@@ -397,8 +394,7 @@ class CONTENT_EXPORT RenderFrameHostManager : public NotificationObserver { |
scoped_ptr<RenderFrameHostImpl> CreateRenderFrameHost(SiteInstance* instance, |
int view_routing_id, |
int frame_routing_id, |
- bool swapped_out, |
- bool hidden); |
+ int flags); |
// Sets up the necessary state for a new RenderViewHost with the given opener, |
// if necessary. It creates a RenderFrameProxy in the target renderer process |