| Index: content/renderer/render_frame_impl.h
|
| diff --git a/content/renderer/render_frame_impl.h b/content/renderer/render_frame_impl.h
|
| index 29567d8c5d659c603cc9934e805d30b1b2b365a5..5e20f4697df6f49d0489a22f5e2e6859cc67e7df 100644
|
| --- a/content/renderer/render_frame_impl.h
|
| +++ b/content/renderer/render_frame_impl.h
|
| @@ -90,7 +90,6 @@ struct WebCompositionUnderline;
|
| struct WebContextMenuData;
|
| struct WebCursorInfo;
|
| struct WebFindOptions;
|
| -struct WebFrameOwnerProperties;
|
| struct WebScreenInfo;
|
| }
|
|
|
| @@ -194,16 +193,15 @@ class CONTENT_EXPORT RenderFrameImpl
|
| // the latter is MSG_ROUTING_NONE. Note: This is called only when
|
| // RenderFrame is being created in response to IPC message from the browser
|
| // process. All other frame creation is driven through Blink and Create.
|
| - static void CreateFrame(
|
| - int routing_id,
|
| - int proxy_routing_id,
|
| - int opener_routing_id,
|
| - int parent_routing_id,
|
| - int previous_sibling_routing_id,
|
| - const FrameReplicationState& replicated_state,
|
| - CompositorDependencies* compositor_deps,
|
| - const FrameMsg_NewFrame_WidgetParams& params,
|
| - const blink::WebFrameOwnerProperties& frameOwner_properties);
|
| + static void CreateFrame(int routing_id,
|
| + int proxy_routing_id,
|
| + int opener_routing_id,
|
| + int parent_routing_id,
|
| + int previous_sibling_routing_id,
|
| + const FrameReplicationState& replicated_state,
|
| + CompositorDependencies* compositor_deps,
|
| + const FrameMsg_NewFrame_WidgetParams& params,
|
| + const FrameOwnerProperties& frame_owner_properties);
|
|
|
| // Returns the RenderFrameImpl for the given routing ID.
|
| static RenderFrameImpl* FromRoutingID(int routing_id);
|
|
|