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 | 8 |
9 #include "base/time/time.h" | 9 #include "base/time/time.h" |
10 #include "cc/layers/texture_layer.h" | 10 #include "cc/layers/texture_layer.h" |
(...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
351 blink::WebLocalFrame* frame, | 351 blink::WebLocalFrame* frame, |
352 const blink::WebPluginParams& params) { | 352 const blink::WebPluginParams& params) { |
353 NOTIMPLEMENTED(); | 353 NOTIMPLEMENTED(); |
354 return nullptr; | 354 return nullptr; |
355 } | 355 } |
356 | 356 |
357 void WebTestDelegateImpl::OnWebTestProxyBaseDestroy( | 357 void WebTestDelegateImpl::OnWebTestProxyBaseDestroy( |
358 test_runner::WebTestProxyBase* base) { | 358 test_runner::WebTestProxyBase* base) { |
359 } | 359 } |
360 | 360 |
| 361 blink::WebPoint WebTestDelegateImpl::ConvertDIPToNative( |
| 362 const blink::WebPoint& point_in_dip) const { |
| 363 NOTIMPLEMENTED(); |
| 364 return point_in_dip; |
| 365 } |
| 366 |
361 } // namespace html_viewer | 367 } // namespace html_viewer |
OLD | NEW |