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

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: Interpolation of transform treats 'none' as identity. 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 737ebda7fcd5b8884ba6ac4c3ca30a1207e9a339..ccebee1d4a5890666a1c8737ba4a3ef1c2521cba 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