| 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/DoublePoint.h" | 9 #include "platform/geometry/DoublePoint.h" |
| 10 #include "platform/heap/Handle.h" | 10 #include "platform/heap/Handle.h" |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 | 35 |
| 36 // Scrolls to compensate for any change in the anchor's relative location | 36 // Scrolls to compensate for any change in the anchor's relative location |
| 37 // since the most recent call to save(). Should be called immediately after | 37 // since the most recent call to save(). Should be called immediately after |
| 38 // the scroller has been laid out. | 38 // the scroller has been laid out. |
| 39 void restore(); | 39 void restore(); |
| 40 | 40 |
| 41 DEFINE_INLINE_TRACE() { visitor->trace(m_scroller); } | 41 DEFINE_INLINE_TRACE() { visitor->trace(m_scroller); } |
| 42 | 42 |
| 43 private: | 43 private: |
| 44 // The scroller that owns and is adjusted by this ScrollAnchor. | 44 // The scroller that owns and is adjusted by this ScrollAnchor. |
| 45 RawPtrWillBeMember<ScrollableArea> m_scroller; | 45 Member<ScrollableArea> m_scroller; |
| 46 | 46 |
| 47 // The LayoutObject we should anchor to. Lazily computed. | 47 // The LayoutObject we should anchor to. Lazily computed. |
| 48 LayoutObject* m_anchorObject; | 48 LayoutObject* m_anchorObject; |
| 49 | 49 |
| 50 // Location of m_layoutObject relative to scroller at time of save(). | 50 // Location of m_layoutObject relative to scroller at time of save(). |
| 51 DoublePoint m_savedRelativeOffset; | 51 DoublePoint m_savedRelativeOffset; |
| 52 }; | 52 }; |
| 53 | 53 |
| 54 } // namespace blink | 54 } // namespace blink |
| 55 | 55 |
| 56 #endif // ScrollAnchor_h | 56 #endif // ScrollAnchor_h |
| OLD | NEW |