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

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

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/EffectModel.h
diff --git a/Source/core/animation/EffectModel.h b/Source/core/animation/EffectModel.h
index 6c56a4c619bd1a8037c2faabb5375f904bebd88a..1eca1e1eff7e685b66744273afca99850d74a9b4 100644
--- a/Source/core/animation/EffectModel.h
+++ b/Source/core/animation/EffectModel.h
@@ -53,7 +53,7 @@ public:
EffectModel() { }
virtual ~EffectModel() { }
- virtual void sample(int iteration, double fraction, double iterationDuration, OwnPtrWillBeRawPtr<WillBeHeapVector<RefPtrWillBeMember<Interpolation>>>&) const = 0;
+ virtual void sample(int iteration, double fraction, double iterationDuration, OwnPtr<Vector<RefPtr<Interpolation>>>&) const = 0;
virtual bool affects(PropertyHandle) const { return false; }
virtual bool isTransformRelatedEffect() const { return false; }

Powered by Google App Engine
This is Rietveld 408576698