| 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/message_loop/message_loop.h" | 9 #include "base/message_loop/message_loop.h" |
| 10 #include "content/public/test/test_synchronous_compositor_android.h" | 10 #include "content/public/test/test_synchronous_compositor_android.h" |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 window_->PostInvalidate(); | 84 window_->PostInvalidate(); |
| 85 } | 85 } |
| 86 | 86 |
| 87 void RenderingTest::DetachFunctorFromView() { | 87 void RenderingTest::DetachFunctorFromView() { |
| 88 } | 88 } |
| 89 | 89 |
| 90 gfx::Point RenderingTest::GetLocationOnScreen() { | 90 gfx::Point RenderingTest::GetLocationOnScreen() { |
| 91 return gfx::Point(); | 91 return gfx::Point(); |
| 92 } | 92 } |
| 93 | 93 |
| 94 bool RenderingTest::IsFlingActive() const { | 94 bool RenderingTest::IsSmoothScrollingActive() const { |
| 95 return false; | 95 return false; |
| 96 } | 96 } |
| 97 | 97 |
| 98 } // namespace android_webview | 98 } // namespace android_webview |
| OLD | NEW |