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

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

Issue 1120003002: [Oilpan] Migrate most classes under core/animations to Oilpan heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 5 years, 4 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
« no previous file with comments | « Source/core/animation/EffectInputTest.cpp ('k') | Source/core/animation/EffectModel.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/EffectModel.h
diff --git a/Source/core/animation/EffectModel.h b/Source/core/animation/EffectModel.h
index 35583a993769e2804c682b26481525a4fc753342..16a01d509648923c1b19a71f8b9f5bb6fb5b24c4 100644
--- a/Source/core/animation/EffectModel.h
+++ b/Source/core/animation/EffectModel.h
@@ -44,7 +44,7 @@ namespace blink {
class Interpolation;
-class CORE_EXPORT EffectModel : public RefCountedWillBeGarbageCollectedFinalized<EffectModel>, public ScriptWrappable {
+class CORE_EXPORT EffectModel : public GarbageCollectedFinalized<EffectModel>, public ScriptWrappable {
DEFINE_WRAPPERTYPEINFO();
public:
enum CompositeOperation {
@@ -54,7 +54,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, HeapVector<Member<Interpolation>>*&) const = 0;
virtual bool affects(PropertyHandle) const { return false; }
virtual bool isTransformRelatedEffect() const { return false; }
« no previous file with comments | « Source/core/animation/EffectInputTest.cpp ('k') | Source/core/animation/EffectModel.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698