OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 #ifndef CONTENT_BROWSER_RENDERER_HOST_TEST_TEST_RENDER_VIEW_HOST_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_TEST_TEST_RENDER_VIEW_HOST_H_ |
6 #define CONTENT_BROWSER_RENDERER_HOST_TEST_TEST_RENDER_VIEW_HOST_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_TEST_TEST_RENDER_VIEW_HOST_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 #include "base/gtest_prod_util.h" | 10 #include "base/gtest_prod_util.h" |
11 #include "base/message_loop.h" | 11 #include "base/message_loop.h" |
12 #include "build/build_config.h" | 12 #include "build/build_config.h" |
13 #include "chrome/browser/chrome_content_browser_client.h" | 13 #include "chrome/browser/chrome_content_browser_client.h" |
14 #include "chrome/common/page_transition_types.h" | |
15 #include "content/browser/renderer_host/mock_render_process_host.h" | 14 #include "content/browser/renderer_host/mock_render_process_host.h" |
16 #include "content/browser/renderer_host/render_view_host.h" | 15 #include "content/browser/renderer_host/render_view_host.h" |
17 #include "content/browser/renderer_host/render_view_host_factory.h" | 16 #include "content/browser/renderer_host/render_view_host_factory.h" |
18 #include "content/browser/renderer_host/render_widget_host_view.h" | 17 #include "content/browser/renderer_host/render_widget_host_view.h" |
| 18 #include "content/common/page_transition_types.h" |
19 #include "testing/gtest/include/gtest/gtest.h" | 19 #include "testing/gtest/include/gtest/gtest.h" |
20 | 20 |
21 namespace gfx { | 21 namespace gfx { |
22 class Rect; | 22 class Rect; |
23 } | 23 } |
24 | 24 |
25 class NavigationController; | 25 class NavigationController; |
26 class SiteInstance; | 26 class SiteInstance; |
27 class TestingProfile; | 27 class TestingProfile; |
28 class TestTabContents; | 28 class TestTabContents; |
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
303 MockRenderProcessHostFactory rph_factory_; | 303 MockRenderProcessHostFactory rph_factory_; |
304 TestRenderViewHostFactory rvh_factory_; | 304 TestRenderViewHostFactory rvh_factory_; |
305 | 305 |
306 chrome::ChromeContentBrowserClient browser_client_; | 306 chrome::ChromeContentBrowserClient browser_client_; |
307 scoped_ptr<TestTabContents> contents_; | 307 scoped_ptr<TestTabContents> contents_; |
308 | 308 |
309 DISALLOW_COPY_AND_ASSIGN(RenderViewHostTestHarness); | 309 DISALLOW_COPY_AND_ASSIGN(RenderViewHostTestHarness); |
310 }; | 310 }; |
311 | 311 |
312 #endif // CONTENT_BROWSER_RENDERER_HOST_TEST_TEST_RENDER_VIEW_HOST_H_ | 312 #endif // CONTENT_BROWSER_RENDERER_HOST_TEST_TEST_RENDER_VIEW_HOST_H_ |
OLD | NEW |