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

Unified Diff: Source/core/animation/AnimationEffectTiming.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/AnimationEffectTest.cpp ('k') | Source/core/animation/AnimationEffectTiming.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/AnimationEffectTiming.h
diff --git a/Source/core/animation/AnimationEffectTiming.h b/Source/core/animation/AnimationEffectTiming.h
index 58e272e84b2a284482228a61e0af11c0dfcbe3e3..11112e21122486940f4f0f78e9119937626349ea 100644
--- a/Source/core/animation/AnimationEffectTiming.h
+++ b/Source/core/animation/AnimationEffectTiming.h
@@ -15,10 +15,10 @@ namespace blink {
class UnrestrictedDoubleOrString;
-class CORE_EXPORT AnimationEffectTiming : public RefCountedWillBeGarbageCollectedFinalized<AnimationEffectTiming>, public ScriptWrappable {
+class CORE_EXPORT AnimationEffectTiming : public GarbageCollectedFinalized<AnimationEffectTiming>, public ScriptWrappable {
DEFINE_WRAPPERTYPEINFO();
public:
- static PassRefPtrWillBeRawPtr<AnimationEffectTiming> create(AnimationEffect* parent);
+ static AnimationEffectTiming* create(AnimationEffect* parent);
double delay();
double endDelay();
String fill();
@@ -42,7 +42,7 @@ public:
DECLARE_TRACE();
private:
- RefPtrWillBeMember<AnimationEffect> m_parent;
+ Member<AnimationEffect> m_parent;
explicit AnimationEffectTiming(AnimationEffect*);
};
« no previous file with comments | « Source/core/animation/AnimationEffectTest.cpp ('k') | Source/core/animation/AnimationEffectTiming.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698