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

Unified Diff: Source/core/animation/Animation.h

Issue 814083003: Update animation when changes in animation keyframes are detected. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase + Address comments Created 5 years, 11 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 | « LayoutTests/animations/timing-functions-update-animation.html ('k') | Source/core/animation/Timing.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/Animation.h
diff --git a/Source/core/animation/Animation.h b/Source/core/animation/Animation.h
index 9adaffa9565af37bd4962687dc6c753185b9538e..903fbf48700f7313d0142ca7a4d292255825f27f 100644
--- a/Source/core/animation/Animation.h
+++ b/Source/core/animation/Animation.h
@@ -66,6 +66,7 @@ public:
bool affects(CSSPropertyID) const;
const AnimationEffect* effect() const { return m_effect.get(); }
AnimationEffect* effect() { return m_effect.get(); }
+ void setEffect(PassRefPtrWillBeRawPtr<AnimationEffect> effect) { m_effect = effect; }
Priority priority() const { return m_priority; }
Element* target() const { return m_target; }
« no previous file with comments | « LayoutTests/animations/timing-functions-update-animation.html ('k') | Source/core/animation/Timing.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698