OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 ScrollManager_h | 5 #ifndef ScrollManager_h |
6 #define ScrollManager_h | 6 #define ScrollManager_h |
7 | 7 |
8 #include <deque> | 8 #include <deque> |
9 #include "core/CoreExport.h" | 9 #include "core/CoreExport.h" |
10 #include "core/page/EventWithHitTestResults.h" | 10 #include "core/page/EventWithHitTestResults.h" |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 | 102 |
103 void CustomizedScroll(const Node& start_node, ScrollState&); | 103 void CustomizedScroll(const Node& start_node, ScrollState&); |
104 | 104 |
105 Page* GetPage() const; | 105 Page* GetPage() const; |
106 | 106 |
107 bool IsViewportScrollingElement(const Element&) const; | 107 bool IsViewportScrollingElement(const Element&) const; |
108 | 108 |
109 bool HandleScrollGestureOnResizer(Node*, const WebGestureEvent&); | 109 bool HandleScrollGestureOnResizer(Node*, const WebGestureEvent&); |
110 | 110 |
111 void RecomputeScrollChain(const Node& start_node, | 111 void RecomputeScrollChain(const Node& start_node, |
| 112 const ScrollState&, |
112 std::deque<int>& scroll_chain); | 113 std::deque<int>& scroll_chain); |
113 | 114 |
114 // scroller_size is set only when scrolling non root scroller. | 115 // scroller_size is set only when scrolling non root scroller. |
115 void ComputeScrollRelatedMetrics( | 116 void ComputeScrollRelatedMetrics( |
116 uint32_t* non_composited_main_thread_scrolling_reasons, | 117 uint32_t* non_composited_main_thread_scrolling_reasons, |
117 int* scroller_size); | 118 int* scroller_size); |
118 void RecordScrollRelatedMetrics(const WebGestureDevice); | 119 void RecordScrollRelatedMetrics(const WebGestureDevice); |
119 | 120 |
120 // NOTE: If adding a new field to this class please ensure that it is | 121 // NOTE: If adding a new field to this class please ensure that it is |
121 // cleared in |ScrollManager::clear()|. | 122 // cleared in |ScrollManager::clear()|. |
(...skipping 24 matching lines...) Expand all Loading... |
146 | 147 |
147 Member<PaintLayerScrollableArea> resize_scrollable_area_; | 148 Member<PaintLayerScrollableArea> resize_scrollable_area_; |
148 | 149 |
149 LayoutSize | 150 LayoutSize |
150 offset_from_resize_corner_; // In the coords of m_resizeScrollableArea. | 151 offset_from_resize_corner_; // In the coords of m_resizeScrollableArea. |
151 }; | 152 }; |
152 | 153 |
153 } // namespace blink | 154 } // namespace blink |
154 | 155 |
155 #endif // ScrollManager_h | 156 #endif // ScrollManager_h |
OLD | NEW |