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 9eecd7c28c65681943061dc3ad338138252e8d9a..eba1d1f0f12a7e85e8e487977ac8312b7dde237c 100644 |
--- a/content/test/test_render_view_host.h |
+++ b/content/test/test_render_view_host.h |
@@ -281,16 +281,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 |