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

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, 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
« 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..7983293c0b374486d7c801f8758ea1c6a7fc07a7 100644
--- a/Source/core/animation/AnimationEffectTiming.h
+++ b/Source/core/animation/AnimationEffectTiming.h
@@ -8,17 +8,16 @@
#include "bindings/core/v8/ScriptWrappable.h"
#include "core/CoreExport.h"
#include "core/animation/AnimationEffect.h"
-#include "wtf/RefCounted.h"
#include "wtf/text/WTFString.h"
namespace blink {
class UnrestrictedDoubleOrString;
-class CORE_EXPORT AnimationEffectTiming : public RefCountedWillBeGarbageCollectedFinalized<AnimationEffectTiming>, public ScriptWrappable {
+class CORE_EXPORT AnimationEffectTiming : public GarbageCollected<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 +41,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