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 03642dd51ba31f6d90bf6c45130dccdc0f2dd026..87a48d84d1c4f8ce81dc18f308b1fbe7ed40998e 100644 |
--- a/content/test/test_render_view_host.h |
+++ b/content/test/test_render_view_host.h |
@@ -226,9 +226,7 @@ class TestRenderViewHost |
// RenderViewHostTester implementation. Note that CreateRenderView |
// is not specified since it is synonymous with the one from |
// RenderViewHostImpl, see below. |
- virtual void SendBeforeUnloadACK(bool proceed) OVERRIDE; |
virtual void SetContentsMimeType(const std::string& mime_type) OVERRIDE; |
- virtual void SimulateSwapOutACK() OVERRIDE; |
virtual void SimulateWasHidden() OVERRIDE; |
virtual void SimulateWasShown() OVERRIDE; |
@@ -271,18 +269,6 @@ class TestRenderViewHost |
render_view_created_ = created; |
} |
- // Returns whether the RenderViewHost is currently waiting to hear the result |
- // of a before unload handler from the renderer. |
- bool is_waiting_for_beforeunload_ack() const { |
- return is_waiting_for_beforeunload_ack_; |
- } |
- |
- // Sets whether the RenderViewHost is currently swapped out, and thus |
- // filtering messages from the renderer. |
- void set_rvh_state(RenderViewHostImplState rvh_state) { |
- rvh_state_ = rvh_state; |
- } |
- |
// If set, navigations will appear to have loaded through a proxy |
// (ViewHostMsg_FrameNavigte_Params::was_fetched_via_proxy). |
// False by default. |