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

Unified Diff: content/renderer/render_thread_impl.cc

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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/renderer/render_thread_impl.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/render_thread_impl.cc
diff --git a/content/renderer/render_thread_impl.cc b/content/renderer/render_thread_impl.cc
index 207724bdc327a6dbc427a7ab49d7ca2987196434..896d5cbfb0da1048310e6272b709ac1c591c3f26 100644
--- a/content/renderer/render_thread_impl.cc
+++ b/content/renderer/render_thread_impl.cc
@@ -1563,12 +1563,15 @@
return handled;
}
-void RenderThreadImpl::OnCreateNewFrame(FrameMsg_NewFrame_Params params) {
+void RenderThreadImpl::OnCreateNewFrame(
+ int routing_id,
+ int parent_routing_id,
+ int proxy_routing_id,
+ const FrameReplicationState& replicated_state,
+ FrameMsg_NewFrame_WidgetParams params) {
CompositorDependencies* compositor_deps = this;
- RenderFrameImpl::CreateFrame(
- params.routing_id, params.parent_routing_id,
- params.previous_sibling_routing_id, params.proxy_routing_id,
- params.replication_state, compositor_deps, params.widget_params);
+ RenderFrameImpl::CreateFrame(routing_id, parent_routing_id, proxy_routing_id,
+ replicated_state, compositor_deps, params);
}
void RenderThreadImpl::OnCreateNewFrameProxy(
« no previous file with comments | « content/renderer/render_thread_impl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698