Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 CC_LAYERS_LAYER_STICKY_POSITION_CONSTRAINT_H_ | 5 #ifndef CC_LAYERS_LAYER_STICKY_POSITION_CONSTRAINT_H_ |
| 6 #define CC_LAYERS_LAYER_STICKY_POSITION_CONSTRAINT_H_ | 6 #define CC_LAYERS_LAYER_STICKY_POSITION_CONSTRAINT_H_ |
| 7 | 7 |
| 8 #include "cc/base/cc_export.h" | 8 #include "cc/base/cc_export.h" |
| 9 | 9 |
| 10 #include "ui/gfx/geometry/rect.h" | 10 #include "ui/gfx/geometry/rect.h" |
| 11 | 11 |
| 12 namespace cc { | 12 namespace cc { |
| 13 | 13 |
| 14 class Layer; | |
| 15 | |
| 14 struct CC_EXPORT LayerStickyPositionConstraint { | 16 struct CC_EXPORT LayerStickyPositionConstraint { |
| 15 LayerStickyPositionConstraint(); | 17 LayerStickyPositionConstraint(); |
| 16 LayerStickyPositionConstraint(const LayerStickyPositionConstraint& other); | 18 LayerStickyPositionConstraint(const LayerStickyPositionConstraint& other); |
| 17 | 19 |
| 18 bool is_sticky : 1; | 20 bool is_sticky : 1; |
| 19 bool is_anchored_left : 1; | 21 bool is_anchored_left : 1; |
| 20 bool is_anchored_right : 1; | 22 bool is_anchored_right : 1; |
| 21 bool is_anchored_top : 1; | 23 bool is_anchored_top : 1; |
| 22 bool is_anchored_bottom : 1; | 24 bool is_anchored_bottom : 1; |
| 23 | 25 |
| (...skipping 13 matching lines...) Expand all Loading... | |
| 37 // relative to the scroll ancestor. The sticky box is only offset once the | 39 // relative to the scroll ancestor. The sticky box is only offset once the |
| 38 // scroll has passed its initial position (e.g. top_offset will only push | 40 // scroll has passed its initial position (e.g. top_offset will only push |
| 39 // the element down from its original position). | 41 // the element down from its original position). |
| 40 gfx::Rect scroll_container_relative_sticky_box_rect; | 42 gfx::Rect scroll_container_relative_sticky_box_rect; |
| 41 | 43 |
| 42 // The layout rectangle of the sticky box's containing block relative to the | 44 // The layout rectangle of the sticky box's containing block relative to the |
| 43 // scroll ancestor. The sticky box is only moved as far as its containing | 45 // scroll ancestor. The sticky box is only moved as far as its containing |
| 44 // block boundary. | 46 // block boundary. |
| 45 gfx::Rect scroll_container_relative_containing_block_rect; | 47 gfx::Rect scroll_container_relative_containing_block_rect; |
| 46 | 48 |
| 49 Layer* nearest_layer_shifting_sticky_box; | |
| 50 Layer* nearest_layer_shifting_containing_block; | |
| 51 | |
| 52 gfx::Vector2dF total_sticky_box_sticky_offset; | |
| 53 gfx::Vector2dF total_containing_block_sticky_offset; | |
|
flackr
2017/02/21 00:32:43
These only need to be in the StickyPositionNodeDat
| |
| 54 | |
| 55 gfx::Vector2dF cached_computed_sticky_offset; | |
| 56 | |
| 47 bool operator==(const LayerStickyPositionConstraint&) const; | 57 bool operator==(const LayerStickyPositionConstraint&) const; |
| 48 bool operator!=(const LayerStickyPositionConstraint&) const; | 58 bool operator!=(const LayerStickyPositionConstraint&) const; |
| 49 }; | 59 }; |
| 50 | 60 |
| 51 } // namespace cc | 61 } // namespace cc |
| 52 | 62 |
| 53 #endif // CC_LAYERS_LAYER_STICKY_POSITION_CONSTRAINT_H_ | 63 #endif // CC_LAYERS_LAYER_STICKY_POSITION_CONSTRAINT_H_ |
| OLD | NEW |