Use common code to set HttpNetworkSession::Param pointers.
[chromium-blink-merge.git] / components / html_viewer / web_test_delegate_impl.cc
blob5385a660b454a48cbf051db0a7c590c8bca9647a
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "components/html_viewer/web_test_delegate_impl.h"
7 #include "base/time/time.h"
8 #include "cc/layers/texture_layer.h"
9 #include "components/test_runner/web_task.h"
10 #include "components/test_runner/web_test_interfaces.h"
11 #include "components/test_runner/web_test_proxy.h"
12 #include "third_party/WebKit/public/platform/Platform.h"
13 #include "third_party/WebKit/public/platform/WebString.h"
14 #include "third_party/WebKit/public/platform/WebThread.h"
15 #include "third_party/WebKit/public/platform/WebTraceLocation.h"
16 #include "third_party/WebKit/public/platform/WebURL.h"
17 #include "url/gurl.h"
19 namespace html_viewer {
21 namespace {
23 class InvokeTaskHelper : public blink::WebThread::Task {
24 public:
25 InvokeTaskHelper(scoped_ptr<test_runner::WebTask> task)
26 : task_(task.Pass()) {}
28 // WebThread::Task implementation:
29 void run() override { task_->run(); }
31 private:
32 scoped_ptr<test_runner::WebTask> task_;
35 } // namespace
37 WebTestDelegateImpl::WebTestDelegateImpl()
38 : test_interfaces_(nullptr), proxy_(nullptr) {
41 WebTestDelegateImpl::~WebTestDelegateImpl() {
44 void WebTestDelegateImpl::ClearEditCommand() {
45 NOTIMPLEMENTED();
48 void WebTestDelegateImpl::SetEditCommand(const std::string& name,
49 const std::string& value) {
50 NOTIMPLEMENTED();
53 void WebTestDelegateImpl::SetGamepadProvider(
54 test_runner::GamepadController* controller) {
55 NOTIMPLEMENTED();
58 void WebTestDelegateImpl::SetDeviceLightData(const double data) {
59 NOTIMPLEMENTED();
62 void WebTestDelegateImpl::SetDeviceMotionData(
63 const blink::WebDeviceMotionData& data) {
64 NOTIMPLEMENTED();
67 void WebTestDelegateImpl::SetDeviceOrientationData(
68 const blink::WebDeviceOrientationData& data) {
69 NOTIMPLEMENTED();
72 void WebTestDelegateImpl::SetScreenOrientation(
73 const blink::WebScreenOrientationType& orientation) {
74 NOTIMPLEMENTED();
77 void WebTestDelegateImpl::ResetScreenOrientation() {
78 NOTIMPLEMENTED();
81 void WebTestDelegateImpl::DidChangeBatteryStatus(
82 const blink::WebBatteryStatus& status) {
83 NOTIMPLEMENTED();
86 void WebTestDelegateImpl::PrintMessage(const std::string& message) {
87 fprintf(stderr, "%s", message.c_str());
90 void WebTestDelegateImpl::PostTask(test_runner::WebTask* task) {
91 blink::Platform::current()->currentThread()->postTask(
92 blink::WebTraceLocation(__FUNCTION__, __FILE__),
93 new InvokeTaskHelper(make_scoped_ptr(task)));
96 void WebTestDelegateImpl::PostDelayedTask(test_runner::WebTask* task,
97 long long ms) {
98 blink::Platform::current()->currentThread()->postDelayedTask(
99 blink::WebTraceLocation(__FUNCTION__, __FILE__),
100 new InvokeTaskHelper(make_scoped_ptr(task)), ms);
103 blink::WebString WebTestDelegateImpl::RegisterIsolatedFileSystem(
104 const blink::WebVector<blink::WebString>& absolute_filenames) {
105 NOTIMPLEMENTED();
106 return blink::WebString();
109 long long WebTestDelegateImpl::GetCurrentTimeInMillisecond() {
110 return base::TimeDelta(base::Time::Now() - base::Time::UnixEpoch())
111 .ToInternalValue() /
112 base::Time::kMicrosecondsPerMillisecond;
115 blink::WebString WebTestDelegateImpl::GetAbsoluteWebStringFromUTF8Path(
116 const std::string& path) {
117 NOTIMPLEMENTED();
118 return blink::WebString::fromUTF8(path);
121 blink::WebURL WebTestDelegateImpl::LocalFileToDataURL(
122 const blink::WebURL& file_url) {
123 NOTIMPLEMENTED();
124 return blink::WebURL();
127 blink::WebURL WebTestDelegateImpl::RewriteLayoutTestsURL(
128 const std::string& utf8_url) {
129 return blink::WebURL(GURL(utf8_url));
132 test_runner::TestPreferences* WebTestDelegateImpl::Preferences() {
133 return &prefs_;
136 void WebTestDelegateImpl::ApplyPreferences() {
137 NOTIMPLEMENTED();
140 void WebTestDelegateImpl::UseUnfortunateSynchronousResizeMode(bool enable) {
141 NOTIMPLEMENTED();
144 void WebTestDelegateImpl::EnableAutoResizeMode(const blink::WebSize& min_size,
145 const blink::WebSize& max_size) {
146 NOTIMPLEMENTED();
149 void WebTestDelegateImpl::DisableAutoResizeMode(
150 const blink::WebSize& new_size) {
151 NOTIMPLEMENTED();
154 void WebTestDelegateImpl::ClearDevToolsLocalStorage() {
155 NOTIMPLEMENTED();
158 void WebTestDelegateImpl::ShowDevTools(const std::string& settings,
159 const std::string& frontend_url) {
160 NOTIMPLEMENTED();
163 void WebTestDelegateImpl::CloseDevTools() {
164 NOTIMPLEMENTED();
167 void WebTestDelegateImpl::EvaluateInWebInspector(long call_id,
168 const std::string& script) {
169 NOTIMPLEMENTED();
172 void WebTestDelegateImpl::ClearAllDatabases() {
173 NOTIMPLEMENTED();
176 void WebTestDelegateImpl::SetDatabaseQuota(int quota) {
177 NOTIMPLEMENTED();
180 void WebTestDelegateImpl::SimulateWebNotificationClick(
181 const std::string& title, int action_index) {
182 NOTIMPLEMENTED();
185 void WebTestDelegateImpl::SetDeviceScaleFactor(float factor) {
186 NOTIMPLEMENTED();
189 void WebTestDelegateImpl::SetDeviceColorProfile(const std::string& name) {
190 NOTIMPLEMENTED();
193 void WebTestDelegateImpl::SetBluetoothMockDataSet(const std::string& data_set) {
194 NOTIMPLEMENTED();
197 void WebTestDelegateImpl::SetGeofencingMockProvider(bool service_available) {
198 NOTIMPLEMENTED();
201 void WebTestDelegateImpl::ClearGeofencingMockProvider() {
202 NOTIMPLEMENTED();
205 void WebTestDelegateImpl::SetGeofencingMockPosition(double latitude,
206 double longitude) {
207 NOTIMPLEMENTED();
210 void WebTestDelegateImpl::SetFocus(test_runner::WebTestProxyBase* proxy,
211 bool focus) {
212 NOTIMPLEMENTED();
215 void WebTestDelegateImpl::SetAcceptAllCookies(bool accept) {
216 NOTIMPLEMENTED();
219 std::string WebTestDelegateImpl::PathToLocalResource(
220 const std::string& resource) {
221 NOTIMPLEMENTED();
222 return std::string();
225 void WebTestDelegateImpl::SetLocale(const std::string& locale) {
226 NOTIMPLEMENTED();
229 void WebTestDelegateImpl::TestFinished() {
230 test_interfaces_->SetTestIsRunning(false);
231 fprintf(stderr, "%s", proxy_ ? proxy_->CaptureTree(false, false).c_str()
232 : dump_tree_.c_str());
235 void WebTestDelegateImpl::CloseRemainingWindows() {
236 NOTIMPLEMENTED();
239 void WebTestDelegateImpl::DeleteAllCookies() {
240 NOTIMPLEMENTED();
243 int WebTestDelegateImpl::NavigationEntryCount() {
244 NOTIMPLEMENTED();
245 return 0;
248 void WebTestDelegateImpl::GoToOffset(int offset) {
249 NOTIMPLEMENTED();
252 void WebTestDelegateImpl::Reload() {
253 NOTIMPLEMENTED();
256 void WebTestDelegateImpl::LoadURLForFrame(const blink::WebURL& url,
257 const std::string& frame_name) {
258 NOTIMPLEMENTED();
261 bool WebTestDelegateImpl::AllowExternalPages() {
262 NOTIMPLEMENTED();
263 return false;
266 std::string WebTestDelegateImpl::DumpHistoryForWindow(
267 test_runner::WebTestProxyBase* proxy) {
268 NOTIMPLEMENTED();
269 return std::string();
272 void WebTestDelegateImpl::FetchManifest(
273 blink::WebView* view,
274 const GURL& url,
275 const base::Callback<void(const blink::WebURLResponse& response,
276 const std::string& data)>& callback) {
277 NOTIMPLEMENTED();
280 void WebTestDelegateImpl::SetPermission(const std::string& permission_name,
281 const std::string& permission_value,
282 const GURL& origin,
283 const GURL& embedding_origin) {
284 NOTIMPLEMENTED();
287 void WebTestDelegateImpl::ResetPermissions() {
288 NOTIMPLEMENTED();
291 scoped_refptr<cc::TextureLayer>
292 WebTestDelegateImpl::CreateTextureLayerForMailbox(
293 cc::TextureLayerClient* client) {
294 NOTIMPLEMENTED();
295 return nullptr;
298 blink::WebLayer* WebTestDelegateImpl::InstantiateWebLayer(
299 scoped_refptr<cc::TextureLayer> layer) {
300 NOTIMPLEMENTED();
301 return nullptr;
304 cc::SharedBitmapManager* WebTestDelegateImpl::GetSharedBitmapManager() {
305 NOTIMPLEMENTED();
306 return nullptr;
309 void WebTestDelegateImpl::DispatchBeforeInstallPromptEvent(
310 int request_id,
311 const std::vector<std::string>& event_platforms,
312 const base::Callback<void(bool)>& callback) {
313 NOTIMPLEMENTED();
316 void WebTestDelegateImpl::ResolveBeforeInstallPromptPromise(int request_id,
317 const std::string& platform) {
318 NOTIMPLEMENTED();
321 blink::WebPlugin* WebTestDelegateImpl::CreatePluginPlaceholder(
322 blink::WebLocalFrame* frame,
323 const blink::WebPluginParams& params) {
324 NOTIMPLEMENTED();
325 return nullptr;
328 void WebTestDelegateImpl::OnWebTestProxyBaseDestroy(
329 test_runner::WebTestProxyBase* base) {
330 DCHECK_EQ(proxy_, base);
331 dump_tree_ = proxy_->CaptureTree(false, false);
332 proxy_ = nullptr;
335 } // namespace html_viewer