Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(273)

Side by Side Diff: third_party/WebKit/Source/core/input/ScrollManager.h

Issue 2773893003: Record size of scroller that user scrolls (Closed)
Patch Set: nit Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 std::deque<int>& scroll_chain); 112 std::deque<int>& scroll_chain);
113 113
114 uint32_t ComputeNonCompositedMainThreadScrollingReasons(); 114 // scroller_size is set only when scrolling non root scroller.
115 void RecordNonCompositedMainThreadScrollingReasons(const WebGestureDevice); 115 void ComputeScrollRelatedMetrics(
116 uint32_t* non_composited_main_thread_scrolling_reasons,
117 int* scroller_size);
118 void RecordScrollRelatedMetrics(const WebGestureDevice);
116 119
117 // NOTE: If adding a new field to this class please ensure that it is 120 // NOTE: If adding a new field to this class please ensure that it is
118 // cleared in |ScrollManager::clear()|. 121 // cleared in |ScrollManager::clear()|.
119 122
120 const Member<LocalFrame> frame_; 123 const Member<LocalFrame> frame_;
121 124
122 // Only used with the ScrollCustomization runtime enabled feature. 125 // Only used with the ScrollCustomization runtime enabled feature.
123 std::deque<int> current_scroll_chain_; 126 std::deque<int> current_scroll_chain_;
124 127
125 Member<Node> scroll_gesture_handling_node_; 128 Member<Node> scroll_gesture_handling_node_;
(...skipping 17 matching lines...) Expand all
143 146
144 Member<PaintLayerScrollableArea> resize_scrollable_area_; 147 Member<PaintLayerScrollableArea> resize_scrollable_area_;
145 148
146 LayoutSize 149 LayoutSize
147 offset_from_resize_corner_; // In the coords of m_resizeScrollableArea. 150 offset_from_resize_corner_; // In the coords of m_resizeScrollableArea.
148 }; 151 };
149 152
150 } // namespace blink 153 } // namespace blink
151 154
152 #endif // ScrollManager_h 155 #endif // ScrollManager_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/input/EventHandlerTest.cpp ('k') | third_party/WebKit/Source/core/input/ScrollManager.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698