Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CC_ANIMATION_MUTABLE_PROPERTIES_H_ | |
| 6 #define CC_ANIMATION_MUTABLE_PROPERTIES_H_ | |
| 7 | |
| 8 namespace cc { | |
| 9 | |
| 10 enum MutableProperty { | |
| 11 kMutablePropertyNone = 0, | |
| 12 kMutablePropertyOpacity = 1 << 0, | |
| 13 kMutablePropertyScrollLeft = 1 << 1, | |
| 14 kMutablePropertyScrollTop = 1 << 2, | |
| 15 kMutablePropertyTransform = 1 << 3, | |
| 16 kMutablePropertyTransformRelated = kMutablePropertyTransform | | |
|
chrishtr
2015/11/24 16:22:50
Unused?
Ian Vollick
2015/11/25 18:28:44
Yep. It gets used in a patch later in the series.
| |
| 17 kMutablePropertyScrollTop | | |
| 18 kMutablePropertyScrollLeft | |
| 19 }; | |
| 20 | |
| 21 } // namespace cc | |
| 22 | |
| 23 #endif // CC_ANIMATION_MUTABLE_PROPERTIES_H_ | |
| OLD | NEW |