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

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

Issue 189883003: Web Animations: Allow animations with delay to start on compositor (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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: Source/core/animation/Player.h
diff --git a/Source/core/animation/Player.h b/Source/core/animation/Player.h
index bd55fef253f04d3769890a722b570bda6d878e38..acfc2ab22b6a21d4ad0d85bf1cb46d1ae3750a63 100644
--- a/Source/core/animation/Player.h
+++ b/Source/core/animation/Player.h
@@ -77,6 +77,7 @@ public:
double startTime() const { return m_startTime; }
void setStartTime(double);
+ const TimedItem* source() const { return m_content.get(); }
TimedItem* source() { return m_content.get(); }
TimedItem* source(bool& isNull) { isNull = !m_content; return m_content.get(); }
void setSource(TimedItem*);

Powered by Google App Engine
This is Rietveld 408576698