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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 // current contents_size to |contents_size_dip|, | 48 // current contents_size to |contents_size_dip|, |
49 // the current page scale to |page_scale_factor| and page scale limits | 49 // the current page scale to |page_scale_factor| and page scale limits |
50 // to |min_page_scale_factor|..|max_page_scale_factor|. | 50 // to |min_page_scale_factor|..|max_page_scale_factor|. |
51 virtual void UpdateScrollState(gfx::Vector2d max_scroll_offset, | 51 virtual void UpdateScrollState(gfx::Vector2d max_scroll_offset, |
52 gfx::SizeF contents_size_dip, | 52 gfx::SizeF contents_size_dip, |
53 float page_scale_factor, | 53 float page_scale_factor, |
54 float min_page_scale_factor, | 54 float min_page_scale_factor, |
55 float max_page_scale_factor) = 0; | 55 float max_page_scale_factor) = 0; |
56 | 56 |
57 // Handle overscroll. | 57 // Handle overscroll. |
58 virtual void DidOverscroll(gfx::Vector2d overscroll_delta) = 0; | 58 virtual void DidOverscroll(gfx::Vector2d overscroll_delta, |
| 59 gfx::Vector2dF overscroll_velocity, |
| 60 bool first_overscroll_x, |
| 61 bool first_overscroll_y) = 0; |
59 | 62 |
60 // Visible for testing | 63 // Visible for testing |
61 // Called when the parent draw constraints in browser view renderer gets | 64 // Called when the parent draw constraints in browser view renderer gets |
62 // updated. | 65 // updated. |
63 virtual void ParentDrawConstraintsUpdated( | 66 virtual void ParentDrawConstraintsUpdated( |
64 const ParentCompositorDrawConstraints& draw_constraints) = 0; | 67 const ParentCompositorDrawConstraints& draw_constraints) = 0; |
65 | 68 |
66 protected: | 69 protected: |
67 virtual ~BrowserViewRendererClient() {} | 70 virtual ~BrowserViewRendererClient() {} |
68 }; | 71 }; |
69 | 72 |
70 } // namespace android_webview | 73 } // namespace android_webview |
71 | 74 |
72 #endif // ANDROID_WEBVIEW_BROWSER_BROWSER_VIEW_RENDERER_CLIENT_H_ | 75 #endif // ANDROID_WEBVIEW_BROWSER_BROWSER_VIEW_RENDERER_CLIENT_H_ |
OLD | NEW |