OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 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/html_viewer/web_test_delegate_impl.h" | 5 #include "components/html_viewer/web_test_delegate_impl.h" |
6 | 6 |
7 #include <iostream> | 7 #include <iostream> |
8 #include <utility> | 8 #include <utility> |
9 | 9 |
10 #include "base/time/time.h" | 10 #include "base/time/time.h" |
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
187 | 187 |
188 void WebTestDelegateImpl::SetDatabaseQuota(int quota) { | 188 void WebTestDelegateImpl::SetDatabaseQuota(int quota) { |
189 NOTIMPLEMENTED(); | 189 NOTIMPLEMENTED(); |
190 } | 190 } |
191 | 191 |
192 void WebTestDelegateImpl::SimulateWebNotificationClick( | 192 void WebTestDelegateImpl::SimulateWebNotificationClick( |
193 const std::string& title, int action_index) { | 193 const std::string& title, int action_index) { |
194 NOTIMPLEMENTED(); | 194 NOTIMPLEMENTED(); |
195 } | 195 } |
196 | 196 |
| 197 void WebTestDelegateImpl::SimulateWebNotificationClose( |
| 198 const std::string& title, bool by_user) { |
| 199 NOTIMPLEMENTED(); |
| 200 } |
| 201 |
197 void WebTestDelegateImpl::SetDeviceScaleFactor(float factor) { | 202 void WebTestDelegateImpl::SetDeviceScaleFactor(float factor) { |
198 NOTIMPLEMENTED(); | 203 NOTIMPLEMENTED(); |
199 } | 204 } |
200 | 205 |
201 void WebTestDelegateImpl::EnableUseZoomForDSF() { | 206 void WebTestDelegateImpl::EnableUseZoomForDSF() { |
202 NOTIMPLEMENTED(); | 207 NOTIMPLEMENTED(); |
203 } | 208 } |
204 | 209 |
205 void WebTestDelegateImpl::SetDeviceColorProfile(const std::string& name) { | 210 void WebTestDelegateImpl::SetDeviceColorProfile(const std::string& name) { |
206 NOTIMPLEMENTED(); | 211 NOTIMPLEMENTED(); |
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
363 test_runner::WebTestProxyBase* base) { | 368 test_runner::WebTestProxyBase* base) { |
364 } | 369 } |
365 | 370 |
366 blink::WebPoint WebTestDelegateImpl::ConvertDIPToNative( | 371 blink::WebPoint WebTestDelegateImpl::ConvertDIPToNative( |
367 const blink::WebPoint& point_in_dip) const { | 372 const blink::WebPoint& point_in_dip) const { |
368 NOTIMPLEMENTED(); | 373 NOTIMPLEMENTED(); |
369 return point_in_dip; | 374 return point_in_dip; |
370 } | 375 } |
371 | 376 |
372 } // namespace html_viewer | 377 } // namespace html_viewer |
OLD | NEW |