| Index: content/test/test_render_view_host.h
|
| diff --git a/content/test/test_render_view_host.h b/content/test/test_render_view_host.h
|
| index d3869ded8dbf9efcc6f5dbb2f304f5e168e160af..fc21a579b718916e1fb4c7a64f03d9d7b629cd62 100644
|
| --- a/content/test/test_render_view_host.h
|
| +++ b/content/test/test_render_view_host.h
|
| @@ -39,6 +39,7 @@ namespace content {
|
| class SiteInstance;
|
| class TestRenderFrameHost;
|
| class TestWebContents;
|
| +struct FrameReplicationState;
|
|
|
| // Utility function to initialize FrameHostMsg_DidCommitProvisionalLoad_Params
|
| // with given parameters.
|
| @@ -232,12 +233,19 @@ class TestRenderViewHost
|
| // RenderWidgetHost overrides (same value, but in the Mock* type)
|
| MockRenderProcessHost* GetProcess() const override;
|
|
|
| + bool CreateTestRenderView(const base::string16& frame_name,
|
| + int opener_route_id,
|
| + int proxy_route_id,
|
| + int32 max_page_id,
|
| + bool window_was_created_with_opener) override;
|
| +
|
| // RenderViewHost overrides --------------------------------------------------
|
|
|
| bool CreateRenderView(const base::string16& frame_name,
|
| int opener_route_id,
|
| int proxy_route_id,
|
| int32 max_page_id,
|
| + const FrameReplicationState& replicated_frame_state,
|
| bool window_was_created_with_opener) override;
|
| bool IsFullscreenGranted() const override;
|
|
|
|
|