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( |