| OLD | NEW |
| 1 #ifndef VisibilityStyleInterpolation_h | 1 #ifndef VisibilityStyleInterpolation_h |
| 2 #define VisibilityStyleInterpolation_h | 2 #define VisibilityStyleInterpolation_h |
| 3 | 3 |
| 4 #include "core/CSSValueKeywords.h" | 4 #include "core/CSSValueKeywords.h" |
| 5 #include "core/CoreExport.h" | 5 #include "core/CoreExport.h" |
| 6 #include "core/animation/StyleInterpolation.h" | 6 #include "core/animation/StyleInterpolation.h" |
| 7 #include "core/css/CSSPrimitiveValue.h" | 7 #include "core/css/CSSPrimitiveValue.h" |
| 8 | 8 |
| 9 namespace blink { | 9 namespace blink { |
| 10 | 10 |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 { | 35 { |
| 36 } | 36 } |
| 37 | 37 |
| 38 static PassOwnPtr<InterpolableValue> visibilityToInterpolableValue(const CSS
Value&); | 38 static PassOwnPtr<InterpolableValue> visibilityToInterpolableValue(const CSS
Value&); |
| 39 static PassRefPtrWillBeRawPtr<CSSValue> interpolableValueToVisibility(Interp
olableValue*, CSSValueID); | 39 static PassRefPtrWillBeRawPtr<CSSValue> interpolableValueToVisibility(Interp
olableValue*, CSSValueID); |
| 40 | 40 |
| 41 CSSValueID m_notVisible; | 41 CSSValueID m_notVisible; |
| 42 | 42 |
| 43 friend class AnimationVisibilityStyleInterpolationTest; | 43 friend class AnimationVisibilityStyleInterpolationTest; |
| 44 }; | 44 }; |
| 45 } | 45 } // namespace blink |
| 46 | 46 |
| 47 #endif | 47 #endif |
| OLD | NEW |