| 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Member<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_anchorObject relative to scroller at time of save(). |
| 89 LayoutPoint m_savedRelativeOffset; | 89 LayoutPoint m_savedRelativeOffset; |
| 90 |
| 91 // The size of the m_anchorObject at the time of save(). |
| 92 LayoutSize m_savedAnchorSize; |
| 90 }; | 93 }; |
| 91 | 94 |
| 92 } // namespace blink | 95 } // namespace blink |
| 93 | 96 |
| 94 #endif // ScrollAnchor_h | 97 #endif // ScrollAnchor_h |
| OLD | NEW |