| Index: content/public/test/mock_render_thread.h
|
| diff --git a/content/public/test/mock_render_thread.h b/content/public/test/mock_render_thread.h
|
| index fcfb53fbfe546e954c2d01485f54736988c96b7f..125a24e277e6cfc3b85bfe6d731d3baeda2463a2 100644
|
| --- a/content/public/test/mock_render_thread.h
|
| +++ b/content/public/test/mock_render_thread.h
|
| @@ -94,8 +94,18 @@ class MockRenderThread : public RenderThread {
|
|
|
| int32_t opener_id() const { return opener_id_; }
|
|
|
| + int32_t new_window_routing_id() const { return new_window_routing_id_; }
|
| +
|
| void set_new_window_routing_id(int32_t id) { new_window_routing_id_ = id; }
|
|
|
| + int32_t new_window_main_frame_routing_id() const {
|
| + return new_window_main_frame_routing_id_;
|
| + }
|
| +
|
| + void set_new_window_main_frame_routing_id(int32_t id) {
|
| + new_window_main_frame_routing_id_ = id;
|
| + }
|
| +
|
| void set_new_window_main_frame_widget_routing_id(int32_t id) {
|
| new_window_main_frame_widget_routing_id_ = id;
|
| }
|
|
|