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_backing_store.h" | 5 #include "content/browser/renderer_host/test_backing_store.h" |
6 #include "content/browser/renderer_host/test_render_view_host.h" | 6 #include "content/browser/renderer_host/test_render_view_host.h" |
7 #include "content/browser/site_instance_impl.h" | 7 #include "content/browser/site_instance_impl.h" |
8 #include "content/browser/tab_contents/test_web_contents.h" | |
9 #include "content/browser/web_contents/navigation_controller_impl.h" | 8 #include "content/browser/web_contents/navigation_controller_impl.h" |
| 9 #include "content/browser/web_contents/test_web_contents.h" |
10 #include "content/common/dom_storage_common.h" | 10 #include "content/common/dom_storage_common.h" |
11 #include "content/common/view_messages.h" | 11 #include "content/common/view_messages.h" |
12 #include "content/public/browser/navigation_controller.h" | 12 #include "content/public/browser/navigation_controller.h" |
13 #include "content/public/common/content_client.h" | 13 #include "content/public/common/content_client.h" |
14 #include "ui/gfx/rect.h" | 14 #include "ui/gfx/rect.h" |
15 #include "webkit/forms/password_form.h" | 15 #include "webkit/forms/password_form.h" |
16 #include "webkit/glue/webkit_glue.h" | 16 #include "webkit/glue/webkit_glue.h" |
17 #include "webkit/glue/webpreferences.h" | 17 #include "webkit/glue/webpreferences.h" |
18 | 18 |
19 using webkit::forms::PasswordForm; | 19 using webkit::forms::PasswordForm; |
(...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
318 | 318 |
319 TestRenderViewHost* RenderViewHostImplTestHarness::active_test_rvh() { | 319 TestRenderViewHost* RenderViewHostImplTestHarness::active_test_rvh() { |
320 return static_cast<TestRenderViewHost*>(active_rvh()); | 320 return static_cast<TestRenderViewHost*>(active_rvh()); |
321 } | 321 } |
322 | 322 |
323 TestWebContents* RenderViewHostImplTestHarness::contents() { | 323 TestWebContents* RenderViewHostImplTestHarness::contents() { |
324 return static_cast<TestWebContents*>(web_contents()); | 324 return static_cast<TestWebContents*>(web_contents()); |
325 } | 325 } |
326 | 326 |
327 } // namespace content | 327 } // namespace content |
OLD | NEW |