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

Unified Diff: Source/core/animation/InertEffect.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/InertEffect.h
diff --git a/Source/core/animation/InertEffect.h b/Source/core/animation/InertEffect.h
index 9fe08394ad56761ca35aac462267c08d9be12db1..f5e2b2b2dd0b73e9057af4c0363fe707e37db3e8 100644
--- a/Source/core/animation/InertEffect.h
+++ b/Source/core/animation/InertEffect.h
@@ -41,7 +41,7 @@ namespace blink {
class CORE_EXPORT InertEffect final : public AnimationEffect {
public:
static InertEffect* create(EffectModel*, const Timing&, bool paused, double inheritedTime);
- void sample(OwnPtrWillBeRawPtr<WillBeHeapVector<RefPtrWillBeMember<Interpolation>>>&);
+ void sample(OwnPtr<Vector<RefPtr<Interpolation>>>&);
EffectModel* model() const { return m_model.get(); }
bool paused() const { return m_paused; }

Powered by Google App Engine
This is Rietveld 408576698