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

Unified Diff: Source/core/animation/CSSValueInterpolationType.h

Issue 1210353004: Rename {Animation,Interpolation}Type and {Animation,Interpolation}Value (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 5 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: Source/core/animation/CSSValueInterpolationType.h
diff --git a/Source/core/animation/CSSValueAnimationType.h b/Source/core/animation/CSSValueInterpolationType.h
similarity index 72%
rename from Source/core/animation/CSSValueAnimationType.h
rename to Source/core/animation/CSSValueInterpolationType.h
index 8b5ace38376c957d3352b568ded6d5769311cf59..77e6edf1a7775d6a81a662c784065b3de15c4d3e 100644
--- a/Source/core/animation/CSSValueAnimationType.h
+++ b/Source/core/animation/CSSValueInterpolationType.h
@@ -2,22 +2,22 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef CSSValueAnimationType_h
-#define CSSValueAnimationType_h
+#ifndef CSSValueInterpolationType_h
+#define CSSValueInterpolationType_h
-#include "core/animation/AnimationType.h"
+#include "core/animation/InterpolationType.h"
namespace blink {
// Never supports pairwise conversion while always supporting single conversion.
// A catch all for default for CSSValues.
-class CSSValueAnimationType : public AnimationType {
+class CSSValueInterpolationType : public InterpolationType {
public:
- CSSValueAnimationType(CSSPropertyID property)
- : AnimationType(property)
+ CSSValueInterpolationType(CSSPropertyID property)
+ : InterpolationType(property)
{ }
- virtual PassOwnPtrWillBeRawPtr<AnimationValue> maybeConvertSingle(const CSSPropertySpecificKeyframe&, const StyleResolverState*, ConversionCheckers&) const override final;
+ virtual PassOwnPtrWillBeRawPtr<InterpolationValue> maybeConvertSingle(const CSSPropertySpecificKeyframe&, const StyleResolverState*, ConversionCheckers&) const override final;
virtual void apply(const InterpolableValue&, const NonInterpolableValue*, StyleResolverState&) const override final;
};
@@ -51,4 +51,4 @@ DEFINE_NON_INTERPOLABLE_VALUE_TYPE_CASTS(DefaultNonInterpolableValue);
} // namespace blink
-#endif // CSSValueAnimationType_h
+#endif // CSSValueInterpolationType_h
« no previous file with comments | « Source/core/animation/CSSValueAnimationType.cpp ('k') | Source/core/animation/CSSValueInterpolationType.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698