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

Unified Diff: third_party/WebKit/Source/core/animation/CSSNumberInterpolationType.cpp

Issue 1409073009: Prefix CSSInterpolationType subclasses with "CSS" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@_unCSSInterpolationType
Patch Set: CSSNIVs Created 5 years, 2 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: third_party/WebKit/Source/core/animation/CSSNumberInterpolationType.cpp
diff --git a/third_party/WebKit/Source/core/animation/NumberInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSNumberInterpolationType.cpp
similarity index 74%
rename from third_party/WebKit/Source/core/animation/NumberInterpolationType.cpp
rename to third_party/WebKit/Source/core/animation/CSSNumberInterpolationType.cpp
index 2ddf09487947dfb8448f1b38d55a33b09711efee..dc4415d567f6b8f103dc559ca18d3252b51d57cf 100644
--- a/third_party/WebKit/Source/core/animation/NumberInterpolationType.cpp
+++ b/third_party/WebKit/Source/core/animation/CSSNumberInterpolationType.cpp
@@ -3,7 +3,7 @@
// found in the LICENSE file.
#include "config.h"
-#include "core/animation/NumberInterpolationType.h"
+#include "core/animation/CSSNumberInterpolationType.h"
#include "core/animation/NumberPropertyFunctions.h"
#include "core/css/resolver/StyleBuilder.h"
@@ -39,17 +39,17 @@ private:
const double m_number;
};
-PassOwnPtr<InterpolationValue> NumberInterpolationType::createNumberValue(double number) const
+PassOwnPtr<InterpolationValue> CSSNumberInterpolationType::createNumberValue(double number) const
{
return InterpolationValue::create(*this, InterpolableNumber::create(number));
}
-PassOwnPtr<InterpolationValue> NumberInterpolationType::maybeConvertNeutral(const UnderlyingValue&, ConversionCheckers&) const
+PassOwnPtr<InterpolationValue> CSSNumberInterpolationType::maybeConvertNeutral(const UnderlyingValue&, ConversionCheckers&) const
{
return createNumberValue(0);
}
-PassOwnPtr<InterpolationValue> NumberInterpolationType::maybeConvertInitial() const
+PassOwnPtr<InterpolationValue> CSSNumberInterpolationType::maybeConvertInitial() const
{
double initialNumber;
if (!NumberPropertyFunctions::getInitialNumber(cssProperty(), initialNumber))
@@ -57,7 +57,7 @@ PassOwnPtr<InterpolationValue> NumberInterpolationType::maybeConvertInitial() co
return createNumberValue(initialNumber);
}
-PassOwnPtr<InterpolationValue> NumberInterpolationType::maybeConvertInherit(const StyleResolverState* state, ConversionCheckers& conversionCheckers) const
+PassOwnPtr<InterpolationValue> CSSNumberInterpolationType::maybeConvertInherit(const StyleResolverState* state, ConversionCheckers& conversionCheckers) const
{
if (!state || !state->parentStyle())
return nullptr;
@@ -68,14 +68,14 @@ PassOwnPtr<InterpolationValue> NumberInterpolationType::maybeConvertInherit(cons
return createNumberValue(inheritedNumber);
}
-PassOwnPtr<InterpolationValue> NumberInterpolationType::maybeConvertValue(const CSSValue& value, const StyleResolverState*, ConversionCheckers&) const
+PassOwnPtr<InterpolationValue> CSSNumberInterpolationType::maybeConvertValue(const CSSValue& value, const StyleResolverState*, ConversionCheckers&) const
{
if (!value.isPrimitiveValue() || !toCSSPrimitiveValue(value).isNumber())
return nullptr;
return createNumberValue(toCSSPrimitiveValue(value).getDoubleValue());
}
-PassOwnPtr<InterpolationValue> NumberInterpolationType::maybeConvertUnderlyingValue(const InterpolationEnvironment& environment) const
+PassOwnPtr<InterpolationValue> CSSNumberInterpolationType::maybeConvertUnderlyingValue(const InterpolationEnvironment& environment) const
{
double underlyingNumber;
if (!NumberPropertyFunctions::getNumber(cssProperty(), *environment.state().style(), underlyingNumber))
@@ -83,7 +83,7 @@ PassOwnPtr<InterpolationValue> NumberInterpolationType::maybeConvertUnderlyingVa
return createNumberValue(underlyingNumber);
}
-void NumberInterpolationType::apply(const InterpolableValue& interpolableValue, const NonInterpolableValue*, InterpolationEnvironment& environment) const
+void CSSNumberInterpolationType::apply(const InterpolableValue& interpolableValue, const NonInterpolableValue*, InterpolationEnvironment& environment) const
{
double clampedNumber = NumberPropertyFunctions::clampNumber(cssProperty(), toInterpolableNumber(interpolableValue).value());
if (!NumberPropertyFunctions::setNumber(cssProperty(), *environment.state().style(), clampedNumber))

Powered by Google App Engine
This is Rietveld 408576698