OLD | NEW |
1 // Copyright (c) 2014 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2014 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/shell/renderer/layout_test/layout_test_content_renderer_client
.h" | 5 #include "content/shell/renderer/layout_test/layout_test_content_renderer_client
.h" |
6 | 6 |
7 #include "base/callback.h" | 7 #include "base/callback.h" |
8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
9 #include "base/debug/debugger.h" | 9 #include "base/debug/debugger.h" |
10 #include "components/web_cache/renderer/web_cache_render_process_observer.h" | 10 #include "components/web_cache/renderer/web_cache_render_process_observer.h" |
11 #include "content/public/common/content_constants.h" | 11 #include "content/public/common/content_constants.h" |
12 #include "content/public/common/content_switches.h" | 12 #include "content/public/common/content_switches.h" |
13 #include "content/public/renderer/render_view.h" | 13 #include "content/public/renderer/render_view.h" |
14 #include "content/public/test/layouttest_support.h" | 14 #include "content/public/test/layouttest_support.h" |
15 #include "content/shell/common/shell_switches.h" | 15 #include "content/shell/common/shell_switches.h" |
16 #include "content/shell/common/webkit_test_helpers.h" | 16 #include "content/shell/renderer/layout_test/blink_test_helpers.h" |
17 #include "content/shell/renderer/layout_test/blink_test_runner.h" | 17 #include "content/shell/renderer/layout_test/blink_test_runner.h" |
18 #include "content/shell/renderer/layout_test/layout_test_render_frame_observer.h
" | 18 #include "content/shell/renderer/layout_test/layout_test_render_frame_observer.h
" |
19 #include "content/shell/renderer/layout_test/layout_test_render_process_observer
.h" | 19 #include "content/shell/renderer/layout_test/layout_test_render_process_observer
.h" |
20 #include "content/shell/renderer/shell_render_view_observer.h" | 20 #include "content/shell/renderer/shell_render_view_observer.h" |
21 #include "content/shell/renderer/test_runner/mock_credential_manager_client.h" | 21 #include "content/shell/renderer/test_runner/mock_credential_manager_client.h" |
22 #include "content/shell/renderer/test_runner/web_test_interfaces.h" | 22 #include "content/shell/renderer/test_runner/web_test_interfaces.h" |
23 #include "content/shell/renderer/test_runner/web_test_proxy.h" | 23 #include "content/shell/renderer/test_runner/web_test_proxy.h" |
24 #include "content/test/mock_webclipboard_impl.h" | 24 #include "content/test/mock_webclipboard_impl.h" |
25 #include "ppapi/shared_impl/ppapi_switches.h" | 25 #include "ppapi/shared_impl/ppapi_switches.h" |
26 #include "third_party/WebKit/public/platform/WebMediaStreamCenter.h" | 26 #include "third_party/WebKit/public/platform/WebMediaStreamCenter.h" |
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
170 LayoutTestRenderProcessObserver::GetInstance()->SetTestDelegate( | 170 LayoutTestRenderProcessObserver::GetInstance()->SetTestDelegate( |
171 test_runner); | 171 test_runner); |
172 } | 172 } |
173 proxy->SetInterfaces( | 173 proxy->SetInterfaces( |
174 LayoutTestRenderProcessObserver::GetInstance()->test_interfaces()); | 174 LayoutTestRenderProcessObserver::GetInstance()->test_interfaces()); |
175 test_runner->proxy()->SetDelegate( | 175 test_runner->proxy()->SetDelegate( |
176 LayoutTestRenderProcessObserver::GetInstance()->test_delegate()); | 176 LayoutTestRenderProcessObserver::GetInstance()->test_delegate()); |
177 } | 177 } |
178 | 178 |
179 } // namespace content | 179 } // namespace content |
OLD | NEW |