| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "content/browser/renderer_host/test_render_view_host.h" | 5 #include "content/browser/renderer_host/test_render_view_host.h" |
| 6 | 6 |
| 7 #include "base/memory/scoped_ptr.h" | 7 #include "base/memory/scoped_ptr.h" |
| 8 #include "content/browser/dom_storage/dom_storage_context_wrapper.h" | 8 #include "content/browser/dom_storage/dom_storage_context_wrapper.h" |
| 9 #include "content/browser/dom_storage/session_storage_namespace_impl.h" | 9 #include "content/browser/dom_storage/session_storage_namespace_impl.h" |
| 10 #include "content/browser/renderer_host/test_backing_store.h" | 10 #include "content/browser/renderer_host/test_backing_store.h" |
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 | 231 |
| 232 gfx::NativeViewId TestRenderWidgetHostView::GetParentForWindowlessPlugin() | 232 gfx::NativeViewId TestRenderWidgetHostView::GetParentForWindowlessPlugin() |
| 233 const { | 233 const { |
| 234 return 0; | 234 return 0; |
| 235 } | 235 } |
| 236 #endif | 236 #endif |
| 237 | 237 |
| 238 TestRenderViewHost::TestRenderViewHost( | 238 TestRenderViewHost::TestRenderViewHost( |
| 239 SiteInstance* instance, | 239 SiteInstance* instance, |
| 240 RenderViewHostDelegate* delegate, | 240 RenderViewHostDelegate* delegate, |
| 241 RenderFrameHostDelegate* frame_delegate, |
| 241 RenderWidgetHostDelegate* widget_delegate, | 242 RenderWidgetHostDelegate* widget_delegate, |
| 242 int routing_id, | 243 int routing_id, |
| 243 int main_frame_routing_id, | 244 int main_frame_routing_id, |
| 244 bool swapped_out) | 245 bool swapped_out) |
| 245 : RenderViewHostImpl(instance, | 246 : RenderViewHostImpl(instance, |
| 246 delegate, | 247 delegate, |
| 248 frame_delegate, |
| 247 widget_delegate, | 249 widget_delegate, |
| 248 routing_id, | 250 routing_id, |
| 249 main_frame_routing_id, | 251 main_frame_routing_id, |
| 250 swapped_out, | 252 swapped_out, |
| 251 false /* hidden */), | 253 false /* hidden */), |
| 252 render_view_created_(false), | 254 render_view_created_(false), |
| 253 delete_counter_(NULL), | 255 delete_counter_(NULL), |
| 254 simulate_fetch_via_proxy_(false), | 256 simulate_fetch_via_proxy_(false), |
| 255 simulate_history_list_was_cleared_(false), | 257 simulate_history_list_was_cleared_(false), |
| 256 contents_mime_type_("text/html"), | 258 contents_mime_type_("text/html"), |
| (...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 423 | 425 |
| 424 TestRenderViewHost* RenderViewHostImplTestHarness::active_test_rvh() { | 426 TestRenderViewHost* RenderViewHostImplTestHarness::active_test_rvh() { |
| 425 return static_cast<TestRenderViewHost*>(active_rvh()); | 427 return static_cast<TestRenderViewHost*>(active_rvh()); |
| 426 } | 428 } |
| 427 | 429 |
| 428 TestWebContents* RenderViewHostImplTestHarness::contents() { | 430 TestWebContents* RenderViewHostImplTestHarness::contents() { |
| 429 return static_cast<TestWebContents*>(web_contents()); | 431 return static_cast<TestWebContents*>(web_contents()); |
| 430 } | 432 } |
| 431 | 433 |
| 432 } // namespace content | 434 } // namespace content |
| OLD | NEW |