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