| 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 344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 355 blink::WebLocalFrame* frame, | 355 blink::WebLocalFrame* frame, |
| 356 const blink::WebPluginParams& params) { | 356 const blink::WebPluginParams& params) { |
| 357 NOTIMPLEMENTED(); | 357 NOTIMPLEMENTED(); |
| 358 return nullptr; | 358 return nullptr; |
| 359 } | 359 } |
| 360 | 360 |
| 361 void WebTestDelegateImpl::OnWebTestProxyBaseDestroy( | 361 void WebTestDelegateImpl::OnWebTestProxyBaseDestroy( |
| 362 test_runner::WebTestProxyBase* base) { | 362 test_runner::WebTestProxyBase* base) { |
| 363 } | 363 } |
| 364 | 364 |
| 365 blink::WebPoint WebTestDelegateImpl::ConvertDIPToNative( | |
| 366 const blink::WebPoint& point_in_dip) const { | |
| 367 NOTIMPLEMENTED(); | |
| 368 return point_in_dip; | |
| 369 } | |
| 370 | |
| 371 } // namespace html_viewer | 365 } // namespace html_viewer |
| OLD | NEW |