OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "components/test_runner/web_test_interfaces.h" | 5 #include "components/test_runner/web_test_interfaces.h" |
6 | 6 |
7 #include <utility> | 7 #include <utility> |
8 | 8 |
9 #include "base/memory/ptr_util.h" | 9 #include "base/memory/ptr_util.h" |
10 #include "components/test_runner/app_banner_client.h" | 10 #include "components/test_runner/app_banner_client.h" |
11 #include "components/test_runner/mock_web_audio_device.h" | 11 #include "components/test_runner/mock_web_audio_device.h" |
12 #include "components/test_runner/mock_web_media_stream_center.h" | 12 #include "components/test_runner/mock_web_media_stream_center.h" |
13 #include "components/test_runner/mock_web_midi_accessor.h" | 13 #include "components/test_runner/mock_web_midi_accessor.h" |
14 #include "components/test_runner/mock_webrtc_peer_connection_handler.h" | 14 #include "components/test_runner/mock_webrtc_peer_connection_handler.h" |
15 #include "components/test_runner/test_interfaces.h" | 15 #include "components/test_runner/test_interfaces.h" |
16 #include "components/test_runner/test_runner.h" | 16 #include "components/test_runner/test_runner.h" |
17 #include "components/test_runner/web_frame_test_client.h" | 17 #include "components/test_runner/web_frame_test_client.h" |
18 #include "components/test_runner/web_view_test_client.h" | 18 #include "components/test_runner/web_view_test_client.h" |
19 #include "components/test_runner/web_view_test_proxy.h" | 19 #include "components/test_runner/web_view_test_proxy.h" |
20 #include "components/test_runner/web_widget_test_client.h" | 20 #include "components/test_runner/web_widget_test_client.h" |
21 #include "components/test_runner/web_widget_test_proxy.h" | |
22 | 21 |
23 using namespace blink; | 22 using namespace blink; |
24 | 23 |
25 namespace test_runner { | 24 namespace test_runner { |
26 | 25 |
27 WebTestInterfaces::WebTestInterfaces() : interfaces_(new TestInterfaces()) { | 26 WebTestInterfaces::WebTestInterfaces() : interfaces_(new TestInterfaces()) { |
28 } | 27 } |
29 | 28 |
30 WebTestInterfaces::~WebTestInterfaces() { | 29 WebTestInterfaces::~WebTestInterfaces() { |
31 } | 30 } |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 } | 98 } |
100 | 99 |
101 std::unique_ptr<WebViewTestClient> WebTestInterfaces::CreateWebViewTestClient( | 100 std::unique_ptr<WebViewTestClient> WebTestInterfaces::CreateWebViewTestClient( |
102 WebViewTestProxyBase* web_view_test_proxy_base) { | 101 WebViewTestProxyBase* web_view_test_proxy_base) { |
103 return base::WrapUnique(new WebViewTestClient(interfaces_->GetTestRunner(), | 102 return base::WrapUnique(new WebViewTestClient(interfaces_->GetTestRunner(), |
104 web_view_test_proxy_base)); | 103 web_view_test_proxy_base)); |
105 } | 104 } |
106 | 105 |
107 std::unique_ptr<WebWidgetTestClient> | 106 std::unique_ptr<WebWidgetTestClient> |
108 WebTestInterfaces::CreateWebWidgetTestClient( | 107 WebTestInterfaces::CreateWebWidgetTestClient( |
109 WebWidgetTestProxyBase* web_widget_test_proxy_base) { | 108 WebViewTestProxyBase* web_view_test_proxy_base) { |
110 return base::WrapUnique(new WebWidgetTestClient(interfaces_->GetTestRunner(), | 109 return base::WrapUnique(new WebWidgetTestClient(interfaces_->GetTestRunner(), |
111 web_widget_test_proxy_base)); | 110 web_view_test_proxy_base)); |
112 } | 111 } |
113 | 112 |
114 std::vector<blink::WebView*> WebTestInterfaces::GetWindowList() { | 113 std::vector<blink::WebView*> WebTestInterfaces::GetWindowList() { |
115 std::vector<blink::WebView*> result; | 114 std::vector<blink::WebView*> result; |
116 for (WebViewTestProxyBase* proxy : interfaces_->GetWindowList()) | 115 for (WebViewTestProxyBase* proxy : interfaces_->GetWindowList()) |
117 result.push_back(proxy->web_view()); | 116 result.push_back(proxy->web_view()); |
118 return result; | 117 return result; |
119 } | 118 } |
120 | 119 |
121 } // namespace test_runner | 120 } // namespace test_runner |
OLD | NEW |