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

Unified Diff: Source/core/animation/ColorStyleInterpolation.cpp

Issue 1164573002: CSSValue Immediates: Change CSSValue to an object instead of a pointer (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase 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 side-by-side diff with in-line comments
Download patch
Index: Source/core/animation/ColorStyleInterpolation.cpp
diff --git a/Source/core/animation/ColorStyleInterpolation.cpp b/Source/core/animation/ColorStyleInterpolation.cpp
index e96ff48475bd06c863c4e9063707e58703cb4e29..5c9a618bafc0d4ceef9d5cbc5d1856cf59595e89 100644
--- a/Source/core/animation/ColorStyleInterpolation.cpp
+++ b/Source/core/animation/ColorStyleInterpolation.cpp
@@ -71,7 +71,7 @@ PassRefPtrWillBeRawPtr<CSSPrimitiveValue> ColorStyleInterpolation::interpolableV
void ColorStyleInterpolation::apply(StyleResolverState& state) const
{
- StyleBuilder::applyProperty(m_id, state, interpolableValueToColor(*m_cachedValue).get());
+ StyleBuilder::applyProperty(m_id, state, interpolableValueToColor(*m_cachedValue));
}
DEFINE_TRACE(ColorStyleInterpolation)
« no previous file with comments | « Source/core/animation/CSSValueInterpolationType.cpp ('k') | Source/core/animation/ColorStyleInterpolationTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698