Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(711)

Side by Side Diff: Source/core/animation/InvalidatableStyleInterpolation.h

Issue 1217683004: Oilpan: fix build after r197963. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | Source/core/animation/PrimitiveInterpolation.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 InvalidatableStyleInterpolation_h 5 #ifndef InvalidatableStyleInterpolation_h
6 #define InvalidatableStyleInterpolation_h 6 #define InvalidatableStyleInterpolation_h
7 7
8 #include "core/animation/AnimationType.h" 8 #include "core/animation/AnimationType.h"
9 #include "core/animation/AnimationValue.h" 9 #include "core/animation/AnimationValue.h"
10 #include "core/animation/PrimitiveInterpolation.h" 10 #include "core/animation/PrimitiveInterpolation.h"
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 bool isCacheValid(const StyleResolverState&) const; 48 bool isCacheValid(const StyleResolverState&) const;
49 bool maybeCachePairwiseConversion(const StyleResolverState*) const; 49 bool maybeCachePairwiseConversion(const StyleResolverState*) const;
50 PassOwnPtrWillBeRawPtr<AnimationValue> convertSingleKeyframe(const CSSProper tySpecificKeyframe&, const StyleResolverState&) const; 50 PassOwnPtrWillBeRawPtr<AnimationValue> convertSingleKeyframe(const CSSProper tySpecificKeyframe&, const StyleResolverState&) const;
51 51
52 const Vector<const AnimationType*>& m_animationTypes; 52 const Vector<const AnimationType*>& m_animationTypes;
53 const CSSPropertySpecificKeyframe& m_startKeyframe; 53 const CSSPropertySpecificKeyframe& m_startKeyframe;
54 const CSSPropertySpecificKeyframe& m_endKeyframe; 54 const CSSPropertySpecificKeyframe& m_endKeyframe;
55 double m_currentFraction; 55 double m_currentFraction;
56 mutable OwnPtrWillBeMember<PrimitiveInterpolation> m_cachedConversion; 56 mutable OwnPtrWillBeMember<PrimitiveInterpolation> m_cachedConversion;
57 mutable AnimationType::ConversionCheckers m_conversionCheckers; 57 mutable AnimationType::ConversionCheckers m_conversionCheckers;
58 mutable OwnPtrWillBeRawPtr<AnimationValue> m_cachedValue; 58 mutable OwnPtrWillBeMember<AnimationValue> m_cachedValue;
59 }; 59 };
60 60
61 DEFINE_TYPE_CASTS(InvalidatableStyleInterpolation, Interpolation, value, value-> isInvalidatableStyleInterpolation(), value.isInvalidatableStyleInterpolation()); 61 DEFINE_TYPE_CASTS(InvalidatableStyleInterpolation, Interpolation, value, value-> isInvalidatableStyleInterpolation(), value.isInvalidatableStyleInterpolation());
62 62
63 } // namespace blink 63 } // namespace blink
64 64
65 #endif // InvalidatableStyleInterpolation_h 65 #endif // InvalidatableStyleInterpolation_h
OLDNEW
« no previous file with comments | « no previous file | Source/core/animation/PrimitiveInterpolation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698