| Index: content/renderer/render_view_impl.h
|
| diff --git a/content/renderer/render_view_impl.h b/content/renderer/render_view_impl.h
|
| index 6616acd91677e27344337b0865de62187bdaac5a..fb5409afd9751806b3b3ab1fca88304a3b57489d 100644
|
| --- a/content/renderer/render_view_impl.h
|
| +++ b/content/renderer/render_view_impl.h
|
| @@ -27,6 +27,7 @@
|
| #include "content/common/drag_event_source_info.h"
|
| #include "content/common/edit_command.h"
|
| #include "content/common/frame_message_enums.h"
|
| +#include "content/common/frame_replication_state.h"
|
| #include "content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.h"
|
| #include "content/common/navigation_gesture.h"
|
| #include "content/common/navigation_params.h"
|
| @@ -164,25 +165,27 @@ class CONTENT_EXPORT RenderViewImpl
|
| // |opener_id| will be MSG_ROUTING_NONE. When |swapped_out| is true, the
|
| // |proxy_routing_id| is specified, so a RenderFrameProxy can be created for
|
| // this RenderView's main RenderFrame.
|
| - static RenderViewImpl* Create(int32 opener_id,
|
| - bool window_was_created_with_opener,
|
| - const RendererPreferences& renderer_prefs,
|
| - const WebPreferences& webkit_prefs,
|
| - int32 routing_id,
|
| - int32 main_frame_routing_id,
|
| - int32 surface_id,
|
| - int64 session_storage_namespace_id,
|
| - const base::string16& frame_name,
|
| - bool is_renderer_created,
|
| - bool swapped_out,
|
| - int32 proxy_routing_id,
|
| - bool hidden,
|
| - bool never_visible,
|
| - int32 next_page_id,
|
| - const ViewMsg_Resize_Params& initial_size,
|
| - bool enable_auto_resize,
|
| - const gfx::Size& min_size,
|
| - const gfx::Size& max_size);
|
| + static RenderViewImpl* Create(
|
| + int32 opener_id,
|
| + bool window_was_created_with_opener,
|
| + const RendererPreferences& renderer_prefs,
|
| + const WebPreferences& webkit_prefs,
|
| + int32 routing_id,
|
| + int32 main_frame_routing_id,
|
| + int32 surface_id,
|
| + int64 session_storage_namespace_id,
|
| + const base::string16& frame_name,
|
| + bool is_renderer_created,
|
| + bool swapped_out,
|
| + const FrameReplicationState& replicated_frame_state,
|
| + int32 proxy_routing_id,
|
| + bool hidden,
|
| + bool never_visible,
|
| + int32 next_page_id,
|
| + const ViewMsg_Resize_Params& initial_size,
|
| + bool enable_auto_resize,
|
| + const gfx::Size& min_size,
|
| + const gfx::Size& max_size);
|
|
|
| // Used by content_layouttest_support to hook into the creation of
|
| // RenderViewImpls.
|
|
|