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 #ifndef ANDROID_WEBVIEW_BROWSER_BROWSER_VIEW_RENDERER_CLIENT_H_ | 5 #ifndef ANDROID_WEBVIEW_BROWSER_BROWSER_VIEW_RENDERER_CLIENT_H_ |
6 #define ANDROID_WEBVIEW_BROWSER_BROWSER_VIEW_RENDERER_CLIENT_H_ | 6 #define ANDROID_WEBVIEW_BROWSER_BROWSER_VIEW_RENDERER_CLIENT_H_ |
7 | 7 |
8 #include "base/android/scoped_java_ref.h" | 8 #include "base/android/scoped_java_ref.h" |
9 #include "ui/gfx/geometry/point.h" | 9 #include "ui/gfx/geometry/point.h" |
10 #include "ui/gfx/geometry/size_f.h" | 10 #include "ui/gfx/geometry/size_f.h" |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 // current contents_size to |contents_size_dip|, | 45 // current contents_size to |contents_size_dip|, |
46 // the current page scale to |page_scale_factor| and page scale limits | 46 // the current page scale to |page_scale_factor| and page scale limits |
47 // to |min_page_scale_factor|..|max_page_scale_factor|. | 47 // to |min_page_scale_factor|..|max_page_scale_factor|. |
48 virtual void UpdateScrollState(gfx::Vector2d max_scroll_offset, | 48 virtual void UpdateScrollState(gfx::Vector2d max_scroll_offset, |
49 gfx::SizeF contents_size_dip, | 49 gfx::SizeF contents_size_dip, |
50 float page_scale_factor, | 50 float page_scale_factor, |
51 float min_page_scale_factor, | 51 float min_page_scale_factor, |
52 float max_page_scale_factor) = 0; | 52 float max_page_scale_factor) = 0; |
53 | 53 |
54 // Handle overscroll. | 54 // Handle overscroll. |
55 virtual void DidOverscroll(gfx::Vector2d overscroll_delta) = 0; | 55 virtual void DidOverscroll(gfx::Vector2d overscroll_delta, |
| 56 gfx::Vector2dF overscroll_velocity, |
| 57 bool first_overscroll_x, |
| 58 bool first_overscroll_y) = 0; |
56 | 59 |
57 protected: | 60 protected: |
58 virtual ~BrowserViewRendererClient() {} | 61 virtual ~BrowserViewRendererClient() {} |
59 }; | 62 }; |
60 | 63 |
61 } // namespace android_webview | 64 } // namespace android_webview |
62 | 65 |
63 #endif // ANDROID_WEBVIEW_BROWSER_BROWSER_VIEW_RENDERER_CLIENT_H_ | 66 #endif // ANDROID_WEBVIEW_BROWSER_BROWSER_VIEW_RENDERER_CLIENT_H_ |
OLD | NEW |