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

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

Issue 2379863003: Implement AnimationEffectTimingReadOnly interface (Closed)
Patch Set: Response to review, update formatting of new files Created 4 years, 2 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.h
diff --git a/third_party/WebKit/Source/core/animation/AnimationEffectReadOnly.h b/third_party/WebKit/Source/core/animation/AnimationEffectReadOnly.h
index 4884cde1b396f01c54b5254c5585c75893e66d1f..29d9e2e5b9a540f7e5c813de9894f502d3d9cb7e 100644
--- a/third_party/WebKit/Source/core/animation/AnimationEffectReadOnly.h
+++ b/third_party/WebKit/Source/core/animation/AnimationEffectReadOnly.h
@@ -40,7 +40,7 @@ namespace blink {
class Animation;
class AnimationEffectReadOnly;
-class AnimationEffectTiming;
+class AnimationEffectTimingReadOnly;
class ComputedTimingProperties;
enum TimingUpdateReason { TimingUpdateOnDemand, TimingUpdateForAnimationFrame };
@@ -107,7 +107,7 @@ class CORE_EXPORT AnimationEffectReadOnly
const Animation* animation() const { return m_animation; }
Animation* animation() { return m_animation; }
const Timing& specifiedTiming() const { return m_timing; }
- AnimationEffectTiming* timing();
+ virtual AnimationEffectTimingReadOnly* timing();
void updateSpecifiedTiming(const Timing&);
void getComputedTiming(ComputedTimingProperties&);

Powered by Google App Engine
This is Rietveld 408576698