| 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/test_runner/app_banner_client.h" | |
| 11 #include "components/test_runner/mock_credential_manager_client.h" | 10 #include "components/test_runner/mock_credential_manager_client.h" |
| 12 #include "components/test_runner/web_test_interfaces.h" | 11 #include "components/test_runner/web_test_interfaces.h" |
| 13 #include "components/test_runner/web_test_proxy.h" | 12 #include "components/test_runner/web_test_proxy.h" |
| 14 #include "components/web_cache/renderer/web_cache_render_process_observer.h" | 13 #include "components/web_cache/renderer/web_cache_render_process_observer.h" |
| 15 #include "content/public/common/content_constants.h" | 14 #include "content/public/common/content_constants.h" |
| 16 #include "content/public/common/content_switches.h" | 15 #include "content/public/common/content_switches.h" |
| 17 #include "content/public/renderer/render_view.h" | 16 #include "content/public/renderer/render_view.h" |
| 18 #include "content/public/test/layouttest_support.h" | 17 #include "content/public/test/layouttest_support.h" |
| 19 #include "content/shell/common/shell_switches.h" | 18 #include "content/shell/common/shell_switches.h" |
| 20 #include "content/shell/renderer/layout_test/blink_test_helpers.h" | 19 #include "content/shell/renderer/layout_test/blink_test_helpers.h" |
| 21 #include "content/shell/renderer/layout_test/blink_test_runner.h" | 20 #include "content/shell/renderer/layout_test/blink_test_runner.h" |
| 22 #include "content/shell/renderer/layout_test/layout_test_render_frame_observer.h
" | 21 #include "content/shell/renderer/layout_test/layout_test_render_frame_observer.h
" |
| 23 #include "content/shell/renderer/layout_test/layout_test_render_process_observer
.h" | 22 #include "content/shell/renderer/layout_test/layout_test_render_process_observer
.h" |
| 24 #include "content/shell/renderer/layout_test/test_media_stream_renderer_factory.
h" | 23 #include "content/shell/renderer/layout_test/test_media_stream_renderer_factory.
h" |
| 25 #include "content/shell/renderer/shell_render_view_observer.h" | 24 #include "content/shell/renderer/shell_render_view_observer.h" |
| 26 #include "content/test/mock_webclipboard_impl.h" | 25 #include "content/test/mock_webclipboard_impl.h" |
| 27 #include "ppapi/shared_impl/ppapi_switches.h" | 26 #include "ppapi/shared_impl/ppapi_switches.h" |
| 28 #include "third_party/WebKit/public/platform/WebMediaStreamCenter.h" | 27 #include "third_party/WebKit/public/platform/WebMediaStreamCenter.h" |
| 28 #include "third_party/WebKit/public/platform/modules/app_banner/WebAppBannerClie
nt.h" |
| 29 #include "third_party/WebKit/public/web/WebPluginParams.h" | 29 #include "third_party/WebKit/public/web/WebPluginParams.h" |
| 30 #include "third_party/WebKit/public/web/WebView.h" | 30 #include "third_party/WebKit/public/web/WebView.h" |
| 31 #include "v8/include/v8.h" | 31 #include "v8/include/v8.h" |
| 32 | 32 |
| 33 using blink::WebAudioDevice; | 33 using blink::WebAudioDevice; |
| 34 using blink::WebClipboard; | 34 using blink::WebClipboard; |
| 35 using blink::WebLocalFrame; | 35 using blink::WebLocalFrame; |
| 36 using blink::WebMIDIAccessor; | 36 using blink::WebMIDIAccessor; |
| 37 using blink::WebMIDIAccessorClient; | 37 using blink::WebMIDIAccessorClient; |
| 38 using blink::WebMediaStreamCenter; | 38 using blink::WebMediaStreamCenter; |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 LayoutTestRenderProcessObserver::GetInstance()->SetTestDelegate( | 160 LayoutTestRenderProcessObserver::GetInstance()->SetTestDelegate( |
| 161 test_runner); | 161 test_runner); |
| 162 } | 162 } |
| 163 proxy->SetInterfaces( | 163 proxy->SetInterfaces( |
| 164 LayoutTestRenderProcessObserver::GetInstance()->test_interfaces()); | 164 LayoutTestRenderProcessObserver::GetInstance()->test_interfaces()); |
| 165 test_runner->proxy()->SetDelegate( | 165 test_runner->proxy()->SetDelegate( |
| 166 LayoutTestRenderProcessObserver::GetInstance()->test_delegate()); | 166 LayoutTestRenderProcessObserver::GetInstance()->test_delegate()); |
| 167 } | 167 } |
| 168 | 168 |
| 169 } // namespace content | 169 } // namespace content |
| OLD | NEW |