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

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

Issue 2369833002: Introduce KeyframeEffectReadOnly interface (Closed)
Patch Set: Use short form of copyright message Created 4 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
Index: third_party/WebKit/Source/core/animation/KeyframeEffect.h
diff --git a/third_party/WebKit/Source/core/animation/KeyframeEffect.h b/third_party/WebKit/Source/core/animation/KeyframeEffect.h
index 5c5471ede36043c4774c0261a58d24fb14bd1a20..65f05aebeca5e676b3fa6d3ad8073800888e196c 100644
--- a/third_party/WebKit/Source/core/animation/KeyframeEffect.h
+++ b/third_party/WebKit/Source/core/animation/KeyframeEffect.h
@@ -32,9 +32,9 @@
#define KeyframeEffect_h
#include "core/CoreExport.h"
-#include "core/animation/AnimationEffectReadOnly.h"
#include "core/animation/EffectInput.h"
#include "core/animation/EffectModel.h"
+#include "core/animation/KeyframeEffectReadOnly.h"
#include "core/animation/TimingInput.h"
#include "platform/heap/Handle.h"
#include "wtf/RefPtr.h"
@@ -50,7 +50,7 @@ class SampledEffect;
// Represents the effect of an Animation on an Element's properties.
// http://w3c.github.io/web-animations/#keyframe-effect
-class CORE_EXPORT KeyframeEffect final : public AnimationEffectReadOnly {
+class CORE_EXPORT KeyframeEffect final : public KeyframeEffectReadOnly {
DEFINE_WRAPPERTYPEINFO();
public:
enum Priority { DefaultPriority, TransitionPriority };
@@ -106,12 +106,7 @@ protected:
private:
KeyframeEffect(Element*, EffectModel*, const Timing&, Priority, EventDelegate*);
- Member<Element> m_target;
- Member<EffectModel> m_model;
- Member<SampledEffect> m_sampledEffect;
-
Priority m_priority;
-
Vector<int> m_compositorAnimationIds;
friend class AnimationAnimationV8Test;
« no previous file with comments | « third_party/WebKit/Source/core/animation/BUILD.gn ('k') | third_party/WebKit/Source/core/animation/KeyframeEffect.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698