| 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 namespace proto { | |
| 15 class LayerStickyPositionConstraint; | |
| 16 } | |
| 17 | |
| 18 struct CC_EXPORT LayerStickyPositionConstraint { | 14 struct CC_EXPORT LayerStickyPositionConstraint { |
| 19 LayerStickyPositionConstraint(); | 15 LayerStickyPositionConstraint(); |
| 20 LayerStickyPositionConstraint(const LayerStickyPositionConstraint& other); | 16 LayerStickyPositionConstraint(const LayerStickyPositionConstraint& other); |
| 21 | 17 |
| 22 bool is_sticky : 1; | 18 bool is_sticky : 1; |
| 23 bool is_anchored_left : 1; | 19 bool is_anchored_left : 1; |
| 24 bool is_anchored_right : 1; | 20 bool is_anchored_right : 1; |
| 25 bool is_anchored_top : 1; | 21 bool is_anchored_top : 1; |
| 26 bool is_anchored_bottom : 1; | 22 bool is_anchored_bottom : 1; |
| 27 | 23 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 41 // relative to the scroll ancestor. The sticky box is only offset once the | 37 // relative to the scroll ancestor. The sticky box is only offset once the |
| 42 // scroll has passed its initial position (e.g. top_offset will only push | 38 // scroll has passed its initial position (e.g. top_offset will only push |
| 43 // the element down from its original position). | 39 // the element down from its original position). |
| 44 gfx::Rect scroll_container_relative_sticky_box_rect; | 40 gfx::Rect scroll_container_relative_sticky_box_rect; |
| 45 | 41 |
| 46 // The layout rectangle of the sticky box's containing block relative to the | 42 // The layout rectangle of the sticky box's containing block relative to the |
| 47 // scroll ancestor. The sticky box is only moved as far as its containing | 43 // scroll ancestor. The sticky box is only moved as far as its containing |
| 48 // block boundary. | 44 // block boundary. |
| 49 gfx::Rect scroll_container_relative_containing_block_rect; | 45 gfx::Rect scroll_container_relative_containing_block_rect; |
| 50 | 46 |
| 51 void ToProtobuf(proto::LayerStickyPositionConstraint* proto) const; | |
| 52 void FromProtobuf(const proto::LayerStickyPositionConstraint& proto); | |
| 53 | |
| 54 bool operator==(const LayerStickyPositionConstraint&) const; | 47 bool operator==(const LayerStickyPositionConstraint&) const; |
| 55 bool operator!=(const LayerStickyPositionConstraint&) const; | 48 bool operator!=(const LayerStickyPositionConstraint&) const; |
| 56 }; | 49 }; |
| 57 | 50 |
| 58 } // namespace cc | 51 } // namespace cc |
| 59 | 52 |
| 60 #endif // CC_LAYERS_LAYER_STICKY_POSITION_CONSTRAINT_H_ | 53 #endif // CC_LAYERS_LAYER_STICKY_POSITION_CONSTRAINT_H_ |
| OLD | NEW |