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

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

Issue 1305383006: Oilpan: Unship CSSValues and AnimatableValues Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 4 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
« no previous file with comments | « Source/core/animation/AngleSVGInterpolation.h ('k') | Source/core/animation/AnimationStackTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/AnimationInputHelpers.cpp
diff --git a/Source/core/animation/AnimationInputHelpers.cpp b/Source/core/animation/AnimationInputHelpers.cpp
index 22687ac7a71bcc065a6f17eef7ddbc25d58b7a55..f524d22798a4c0d81ec467b375c81f37e6da35e6 100644
--- a/Source/core/animation/AnimationInputHelpers.cpp
+++ b/Source/core/animation/AnimationInputHelpers.cpp
@@ -33,7 +33,7 @@ PassRefPtr<TimingFunction> AnimationInputHelpers::parseTimingFunction(const Stri
if (string.isEmpty())
return nullptr;
- RefPtrWillBeRawPtr<CSSValue> value = CSSParser::parseSingleValue(CSSPropertyTransitionTimingFunction, string);
+ RefPtr<CSSValue> value = CSSParser::parseSingleValue(CSSPropertyTransitionTimingFunction, string);
if (!value || !value->isValueList()) {
ASSERT(!value || value->isCSSWideKeyword());
return nullptr;
« no previous file with comments | « Source/core/animation/AngleSVGInterpolation.h ('k') | Source/core/animation/AnimationStackTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698