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

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

Issue 73643004: Web Animations: Extract an API for servicing animations (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Switch to references for non-null params. Created 7 years, 1 month 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: Source/core/animation/Animation.h
diff --git a/Source/core/animation/Animation.h b/Source/core/animation/Animation.h
index 0c60f8eb1cc68405816c6c4ce9cae7208cc5854d..e4f1456bab8a0bef80c7d667908127ecd0fc03ae 100644
--- a/Source/core/animation/Animation.h
+++ b/Source/core/animation/Animation.h
@@ -56,6 +56,7 @@ public:
bool affects(CSSPropertyID) const;
const AnimationEffect* effect() const { return m_effect.get(); }
Priority priority() const { return m_priority; }
+ Element* target() { return m_target.get(); }
bool isCandidateForAnimationOnCompositor() const;
// Must only be called once and assumes to be part of a player without a start time.

Powered by Google App Engine
This is Rietveld 408576698