| Index: Source/core/animation/AnimationPlayer.h
|
| diff --git a/Source/core/animation/AnimationPlayer.h b/Source/core/animation/AnimationPlayer.h
|
| index 371fc62439d55e52f9c2dea21f4ba4094e9a896a..afe87adf3fedef0f9610b98f6cb368d852a959d6 100644
|
| --- a/Source/core/animation/AnimationPlayer.h
|
| +++ b/Source/core/animation/AnimationPlayer.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*);
|
|
|