| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 ScrollAnchor_h | 5 #ifndef ScrollAnchor_h |
| 6 #define ScrollAnchor_h | 6 #define ScrollAnchor_h |
| 7 | 7 |
| 8 #include "core/CoreExport.h" | 8 #include "core/CoreExport.h" |
| 9 #include "platform/geometry/LayoutPoint.h" | 9 #include "platform/geometry/LayoutPoint.h" |
| 10 #include "platform/heap/Handle.h" | 10 #include "platform/heap/Handle.h" |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 , viable(true) | 70 , viable(true) |
| 71 , corner(c) {} | 71 , corner(c) {} |
| 72 | 72 |
| 73 WalkStatus status; | 73 WalkStatus status; |
| 74 bool viable; | 74 bool viable; |
| 75 Corner corner; | 75 Corner corner; |
| 76 }; | 76 }; |
| 77 ExamineResult examine(const LayoutObject*) const; | 77 ExamineResult examine(const LayoutObject*) const; |
| 78 | 78 |
| 79 // The scroller that owns and is adjusted by this ScrollAnchor. | 79 // The scroller that owns and is adjusted by this ScrollAnchor. |
| 80 RawPtrWillBeMember<ScrollableArea> m_scroller; | 80 Member<ScrollableArea> m_scroller; |
| 81 | 81 |
| 82 // The LayoutObject we should anchor to. Lazily computed. | 82 // The LayoutObject we should anchor to. Lazily computed. |
| 83 LayoutObject* m_anchorObject; | 83 LayoutObject* m_anchorObject; |
| 84 | 84 |
| 85 // Which corner of m_anchorObject's bounding box to anchor to. | 85 // Which corner of m_anchorObject's bounding box to anchor to. |
| 86 Corner m_corner; | 86 Corner m_corner; |
| 87 | 87 |
| 88 // Location of m_layoutObject relative to scroller at time of save(). | 88 // Location of m_layoutObject relative to scroller at time of save(). |
| 89 LayoutPoint m_savedRelativeOffset; | 89 LayoutPoint m_savedRelativeOffset; |
| 90 }; | 90 }; |
| 91 | 91 |
| 92 } // namespace blink | 92 } // namespace blink |
| 93 | 93 |
| 94 #endif // ScrollAnchor_h | 94 #endif // ScrollAnchor_h |
| OLD | NEW |