| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "android_webview/browser/test/rendering_test.h" | 5 #include "android_webview/browser/test/rendering_test.h" |
| 6 | 6 |
| 7 #include "android_webview/browser/browser_view_renderer.h" | 7 #include "android_webview/browser/browser_view_renderer.h" |
| 8 #include "android_webview/browser/child_frame.h" | 8 #include "android_webview/browser/child_frame.h" |
| 9 #include "base/location.h" | 9 #include "base/location.h" |
| 10 #include "base/thread_task_runner_handle.h" | 10 #include "base/thread_task_runner_handle.h" |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 window_->PostInvalidate(); | 86 window_->PostInvalidate(); |
| 87 } | 87 } |
| 88 | 88 |
| 89 void RenderingTest::DetachFunctorFromView() { | 89 void RenderingTest::DetachFunctorFromView() { |
| 90 } | 90 } |
| 91 | 91 |
| 92 gfx::Point RenderingTest::GetLocationOnScreen() { | 92 gfx::Point RenderingTest::GetLocationOnScreen() { |
| 93 return gfx::Point(); | 93 return gfx::Point(); |
| 94 } | 94 } |
| 95 | 95 |
| 96 bool RenderingTest::IsSmoothScrollingActive() const { | |
| 97 return false; | |
| 98 } | |
| 99 | |
| 100 } // namespace android_webview | 96 } // namespace android_webview |
| OLD | NEW |