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

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, 8 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 51775ff9526cdc7d61c18d9c26dd412bb9ee653e..f067319b391c33e53829dbc5d6eaff1aa738c230 100644
--- a/Source/core/animation/ElementAnimation.h
+++ b/Source/core/animation/ElementAnimation.h
@@ -78,7 +78,7 @@ private:
static AnimationPlayer* animateInternal(Element& element, PassRefPtrWillBeRawPtr<AnimationEffect> effect, const Timing& timing)
{
if (RuntimeEnabledFeatures::webAnimationsAPIEnabled()) {
- 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