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

Side by Side Diff: content/browser/frame_host/render_frame_host_manager.h

Issue 1118083004: Revert of OOPIF: Specify previous sibling frames when creating new RenderFrames. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 months 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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_MANAGER_H_ 5 #ifndef CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_MANAGER_H_
6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_MANAGER_H_ 6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_MANAGER_H_
7 7
8 #include <list> 8 #include <list>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 // whether this RenderViewHost is used to render a top-level frame, so the 118 // whether this RenderViewHost is used to render a top-level frame, so the
119 // appropriate RenderWidgetHostView type is used. 119 // appropriate RenderWidgetHostView type is used.
120 virtual bool CreateRenderViewForRenderManager( 120 virtual bool CreateRenderViewForRenderManager(
121 RenderViewHost* render_view_host, 121 RenderViewHost* render_view_host,
122 int opener_route_id, 122 int opener_route_id,
123 int proxy_routing_id, 123 int proxy_routing_id,
124 bool for_main_frame_navigation) = 0; 124 bool for_main_frame_navigation) = 0;
125 virtual bool CreateRenderFrameForRenderManager( 125 virtual bool CreateRenderFrameForRenderManager(
126 RenderFrameHost* render_frame_host, 126 RenderFrameHost* render_frame_host,
127 int parent_routing_id, 127 int parent_routing_id,
128 int previous_sibling_routing_id,
129 int proxy_routing_id) = 0; 128 int proxy_routing_id) = 0;
130 virtual void BeforeUnloadFiredFromRenderManager( 129 virtual void BeforeUnloadFiredFromRenderManager(
131 bool proceed, const base::TimeTicks& proceed_time, 130 bool proceed, const base::TimeTicks& proceed_time,
132 bool* proceed_to_fire_unload) = 0; 131 bool* proceed_to_fire_unload) = 0;
133 virtual void RenderProcessGoneFromRenderManager( 132 virtual void RenderProcessGoneFromRenderManager(
134 RenderViewHost* render_view_host) = 0; 133 RenderViewHost* render_view_host) = 0;
135 virtual void UpdateRenderViewSizeForRenderManager() = 0; 134 virtual void UpdateRenderViewSizeForRenderManager() = 0;
136 virtual void CancelModalDialogsForRenderManager() = 0; 135 virtual void CancelModalDialogsForRenderManager() = 0;
137 virtual void NotifySwappedFromRenderManager(RenderFrameHost* old_host, 136 virtual void NotifySwappedFromRenderManager(RenderFrameHost* old_host,
138 RenderFrameHost* new_host, 137 RenderFrameHost* new_host,
(...skipping 604 matching lines...) Expand 10 before | Expand all | Expand 10 after
743 bool should_reuse_web_ui_; 742 bool should_reuse_web_ui_;
744 743
745 base::WeakPtrFactory<RenderFrameHostManager> weak_factory_; 744 base::WeakPtrFactory<RenderFrameHostManager> weak_factory_;
746 745
747 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostManager); 746 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostManager);
748 }; 747 };
749 748
750 } // namespace content 749 } // namespace content
751 750
752 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_MANAGER_H_ 751 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_MANAGER_H_
OLDNEW
« no previous file with comments | « content/browser/frame_host/render_frame_host_impl.cc ('k') | content/browser/frame_host/render_frame_host_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698