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

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

Issue 1318543009: Oilpan: Partially ship Oilpan for core/animations (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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
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 {
sof 2015/09/01 11:43:22 nit: "Finalized" is not needed.
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*);
};

Powered by Google App Engine
This is Rietveld 408576698