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 e398964023e0d35a4552e028fed07001d2933675..c3bbdc8f72506468bac9e4cea4752c6219aef1f3 100644 |
--- a/content/test/test_render_view_host.h |
+++ b/content/test/test_render_view_host.h |
@@ -282,16 +282,10 @@ class TestRenderViewHost |
return is_waiting_for_beforeunload_ack_; |
} |
- // Returns whether the RenderViewHost is currently waiting to hear the result |
- // of an unload handler from the renderer. |
- bool is_waiting_for_unload_ack() const { |
- return is_waiting_for_unload_ack_; |
- } |
- |
// Sets whether the RenderViewHost is currently swapped out, and thus |
// filtering messages from the renderer. |
- void set_is_swapped_out(bool is_swapped_out) { |
- is_swapped_out_ = is_swapped_out; |
+ void set_rvh_state(RenderViewHostImplState rvh_state) { |
+ rvh_state_ = rvh_state; |
} |
// If set, navigations will appear to have loaded through a proxy |