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

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

Issue 225073004: Oilpan: Completely move core/animations/ to oilpan's heap (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 7 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/ElementAnimation.h
diff --git a/Source/core/animation/ElementAnimation.h b/Source/core/animation/ElementAnimation.h
index da1500551d3edf3d75513bb9c32b2a3e8dacabc5..c135b7e463e7fc74918a7f83408faaac602323c9 100644
--- a/Source/core/animation/ElementAnimation.h
+++ b/Source/core/animation/ElementAnimation.h
@@ -90,7 +90,7 @@ private:
static AnimationPlayer* animateInternal(Element& element, PassRefPtrWillBeRawPtr<AnimationEffect> effect, const Timing& timing)
{
if (RuntimeEnabledFeatures::webAnimationsElementAnimateEnabled()) {
- RefPtr<Animation> animation = Animation::create(&element, effect, timing);
+ RefPtrWillBeRawPtr<Animation> animation = Animation::create(&element, effect, timing);
return element.document().timeline().play(animation.get());
}
return 0;

Powered by Google App Engine
This is Rietveld 408576698