| 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 "content/browser/dom_storage/dom_storage_context_impl.h" | 7 #include "content/browser/dom_storage/dom_storage_context_impl.h" |
| 8 #include "content/browser/dom_storage/session_storage_namespace_impl.h" | 8 #include "content/browser/dom_storage/session_storage_namespace_impl.h" |
| 9 #include "content/browser/renderer_host/test_backing_store.h" | 9 #include "content/browser/renderer_host/test_backing_store.h" |
| 10 #include "content/browser/site_instance_impl.h" | 10 #include "content/browser/site_instance_impl.h" |
| 11 #include "content/browser/web_contents/navigation_controller_impl.h" | |
| 12 #include "content/common/view_messages.h" | 11 #include "content/common/view_messages.h" |
| 13 #include "content/public/browser/browser_context.h" | 12 #include "content/public/browser/browser_context.h" |
| 14 #include "content/public/browser/navigation_controller.h" | 13 #include "content/public/browser/navigation_controller.h" |
| 15 #include "content/public/browser/storage_partition.h" | 14 #include "content/public/browser/storage_partition.h" |
| 16 #include "content/public/common/content_client.h" | 15 #include "content/public/common/content_client.h" |
| 17 #include "content/public/common/password_form.h" | 16 #include "content/public/common/password_form.h" |
| 18 #include "content/test/test_web_contents.h" | 17 #include "content/test/test_web_contents.h" |
| 19 #include "media/base/video_frame.h" | 18 #include "media/base/video_frame.h" |
| 20 #include "ui/gfx/rect.h" | 19 #include "ui/gfx/rect.h" |
| 21 #include "webkit/dom_storage/dom_storage_types.h" | 20 #include "webkit/dom_storage/dom_storage_types.h" |
| (...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 359 | 358 |
| 360 TestRenderViewHost* RenderViewHostImplTestHarness::active_test_rvh() { | 359 TestRenderViewHost* RenderViewHostImplTestHarness::active_test_rvh() { |
| 361 return static_cast<TestRenderViewHost*>(active_rvh()); | 360 return static_cast<TestRenderViewHost*>(active_rvh()); |
| 362 } | 361 } |
| 363 | 362 |
| 364 TestWebContents* RenderViewHostImplTestHarness::contents() { | 363 TestWebContents* RenderViewHostImplTestHarness::contents() { |
| 365 return static_cast<TestWebContents*>(web_contents()); | 364 return static_cast<TestWebContents*>(web_contents()); |
| 366 } | 365 } |
| 367 | 366 |
| 368 } // namespace content | 367 } // namespace content |
| OLD | NEW |