| Index: content/browser/renderer_host/render_view_host_impl.h
|
| diff --git a/content/browser/renderer_host/render_view_host_impl.h b/content/browser/renderer_host/render_view_host_impl.h
|
| index 91353d5ea101788a6c9e276b9e3ab82d4a855e1f..94f20790de91fa063b8ff21ed7530d8d98ecb607 100644
|
| --- a/content/browser/renderer_host/render_view_host_impl.h
|
| +++ b/content/browser/renderer_host/render_view_host_impl.h
|
| @@ -356,6 +356,7 @@ class CONTENT_EXPORT RenderViewHostImpl
|
| }
|
|
|
| // RenderWidgetHost public overrides.
|
| + virtual void Init() OVERRIDE;
|
| virtual void Shutdown() OVERRIDE;
|
| virtual bool IsRenderView() const OVERRIDE;
|
| virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE;
|
| @@ -587,6 +588,11 @@ class CONTENT_EXPORT RenderViewHostImpl
|
| private:
|
| friend class TestRenderViewHost;
|
| FRIEND_TEST_ALL_PREFIXES(RenderViewHostTest, BasicRenderFrameHost);
|
| + FRIEND_TEST_ALL_PREFIXES(RenderViewHostTest, RoutingIdSane);
|
| +
|
| + // TODO(nasko): Remove this accessor once RenderFrameHost moves into the frame
|
| + // tree.
|
| + RenderFrameHostImpl* main_render_frame_host() const;
|
|
|
| // Sets whether this RenderViewHost is swapped out in favor of another,
|
| // and clears any waiting state that is no longer relevant.
|
|
|