| 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 "core/CoreExport.h" | 8 #include "core/CoreExport.h" |
| 9 #include "core/page/EventWithHitTestResults.h" | 9 #include "core/page/EventWithHitTestResults.h" |
| 10 #include "platform/PlatformEvent.h" | 10 #include "platform/PlatformEvent.h" |
| 11 #include "platform/geometry/LayoutSize.h" | 11 #include "platform/geometry/LayoutSize.h" |
| 12 #include "platform/heap/Handle.h" | 12 #include "platform/heap/Handle.h" |
| 13 #include "platform/heap/Visitor.h" | 13 #include "platform/heap/Visitor.h" |
| 14 #include "platform/scroll/ScrollTypes.h" | 14 #include "platform/scroll/ScrollTypes.h" |
| 15 #include "public/platform/WebInputEventResult.h" | 15 #include "public/platform/WebInputEventResult.h" |
| 16 #include "wtf/Allocator.h" | 16 #include "wtf/Allocator.h" |
| 17 #include <deque> | 17 #include <deque> |
| 18 | 18 |
| 19 namespace blink { | 19 namespace blink { |
| 20 | 20 |
| 21 class AutoscrollController; | 21 class AutoscrollController; |
| 22 class FloatPoint; | |
| 23 class FrameHost; | 22 class FrameHost; |
| 24 class LayoutBox; | 23 class LayoutBox; |
| 25 class LayoutObject; | 24 class LayoutObject; |
| 26 class LocalFrame; | 25 class LocalFrame; |
| 27 class PaintLayer; | 26 class PaintLayer; |
| 28 class PaintLayerScrollableArea; | 27 class PaintLayerScrollableArea; |
| 29 class PlatformGestureEvent; | 28 class PlatformGestureEvent; |
| 30 class Scrollbar; | 29 class Scrollbar; |
| 31 class ScrollState; | 30 class ScrollState; |
| 32 | 31 |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 | 142 |
| 144 Member<PaintLayerScrollableArea> m_resizeScrollableArea; | 143 Member<PaintLayerScrollableArea> m_resizeScrollableArea; |
| 145 | 144 |
| 146 LayoutSize | 145 LayoutSize |
| 147 m_offsetFromResizeCorner; // In the coords of m_resizeScrollableArea. | 146 m_offsetFromResizeCorner; // In the coords of m_resizeScrollableArea. |
| 148 }; | 147 }; |
| 149 | 148 |
| 150 } // namespace blink | 149 } // namespace blink |
| 151 | 150 |
| 152 #endif // ScrollManager_h | 151 #endif // ScrollManager_h |
| OLD | NEW |