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

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

Issue 1276183004: Oilpan: Unship oilpan from temporary animation objects (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 3 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/EffectInput.cpp
diff --git a/Source/core/animation/EffectInput.cpp b/Source/core/animation/EffectInput.cpp
index 7979107ae05ec1bae1daf3830941dea96a6690e6..89a3d6034f14f7d1b917abcb4e3d436ae8f3799e 100644
--- a/Source/core/animation/EffectInput.cpp
+++ b/Source/core/animation/EffectInput.cpp
@@ -207,7 +207,7 @@ EffectModel* EffectInput::convert(Element* element, const Vector<Dictionary>& ke
double lastOffset = 0;
for (const auto& keyframeDictionary : keyframeDictionaryVector) {
- RefPtrWillBeRawPtr<StringKeyframe> keyframe = StringKeyframe::create();
+ RefPtr<StringKeyframe> keyframe = StringKeyframe::create();
ScriptValue scriptValue;
bool frameHasOffset = DictionaryHelper::get(keyframeDictionary, "offset", scriptValue) && !scriptValue.isNull();

Powered by Google App Engine
This is Rietveld 408576698