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

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

Issue 2236583003: Rename AnimationEffect to AnimationEffectReadOnly (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@deprecated-assert
Patch Set: Rebase Created 4 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: third_party/WebKit/Source/core/animation/AnimationEffectTiming.h
diff --git a/third_party/WebKit/Source/core/animation/AnimationEffectTiming.h b/third_party/WebKit/Source/core/animation/AnimationEffectTiming.h
index 9a45fa905de321a2165ee5ce1a8418a6f262a7b8..07ca5c56a7b47283e265fe9190badaef2fc06127 100644
--- a/third_party/WebKit/Source/core/animation/AnimationEffectTiming.h
+++ b/third_party/WebKit/Source/core/animation/AnimationEffectTiming.h
@@ -7,7 +7,7 @@
#include "bindings/core/v8/ScriptWrappable.h"
#include "core/CoreExport.h"
-#include "core/animation/AnimationEffect.h"
+#include "core/animation/AnimationEffectReadOnly.h"
#include "wtf/text/WTFString.h"
namespace blink {
@@ -18,7 +18,7 @@ class UnrestrictedDoubleOrString;
class CORE_EXPORT AnimationEffectTiming : public GarbageCollected<AnimationEffectTiming>, public ScriptWrappable {
DEFINE_WRAPPERTYPEINFO();
public:
- static AnimationEffectTiming* create(AnimationEffect* parent);
+ static AnimationEffectTiming* create(AnimationEffectReadOnly* parent);
double delay();
double endDelay();
String fill();
@@ -42,8 +42,8 @@ public:
DECLARE_TRACE();
private:
- Member<AnimationEffect> m_parent;
- explicit AnimationEffectTiming(AnimationEffect*);
+ Member<AnimationEffectReadOnly> m_parent;
+ explicit AnimationEffectTiming(AnimationEffectReadOnly*);
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698