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

Unified Diff: third_party/WebKit/Source/core/animation/AnimationEffectReadOnly.cpp

Issue 2379863003: Implement AnimationEffectTimingReadOnly interface (Closed)
Patch Set: 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/AnimationEffectReadOnly.cpp
diff --git a/third_party/WebKit/Source/core/animation/AnimationEffectReadOnly.cpp b/third_party/WebKit/Source/core/animation/AnimationEffectReadOnly.cpp
index fc2eb25131529dc984b1a32eda989e61254c7e75..4728dddcc7fb813658a0cde30c010d74a8f75e77 100644
--- a/third_party/WebKit/Source/core/animation/AnimationEffectReadOnly.cpp
+++ b/third_party/WebKit/Source/core/animation/AnimationEffectReadOnly.cpp
@@ -31,7 +31,7 @@
#include "core/animation/AnimationEffectReadOnly.h"
#include "core/animation/Animation.h"
-#include "core/animation/AnimationEffectTiming.h"
+#include "core/animation/AnimationEffectTimingReadOnly.h"
#include "core/animation/ComputedTimingProperties.h"
#include "core/animation/TimingCalculations.h"
@@ -227,9 +227,9 @@ const AnimationEffectReadOnly::CalculatedTiming& AnimationEffectReadOnly::ensure
return m_calculated;
}
-AnimationEffectTiming* AnimationEffectReadOnly::timing()
+AnimationEffectTimingReadOnly* AnimationEffectReadOnly::timing()
{
- return AnimationEffectTiming::create(this);
+ return AnimationEffectTimingReadOnly::create(this);
}
DEFINE_TRACE(AnimationEffectReadOnly)

Powered by Google App Engine
This is Rietveld 408576698