summaryrefslogtreecommitdiffstats
path: root/WebCore/platform/graphics/android/AndroidAnimation.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/platform/graphics/android/AndroidAnimation.h')
-rw-r--r--WebCore/platform/graphics/android/AndroidAnimation.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/WebCore/platform/graphics/android/AndroidAnimation.h b/WebCore/platform/graphics/android/AndroidAnimation.h
index 4f84799..602abe2 100644
--- a/WebCore/platform/graphics/android/AndroidAnimation.h
+++ b/WebCore/platform/graphics/android/AndroidAnimation.h
@@ -53,11 +53,13 @@ class AndroidAnimation : public RefCounted<AndroidAnimation> {
void setName(const String& name) { m_name = name; }
String name() { return m_name; }
AnimatedPropertyID type() { return m_type; }
+ bool finished() { return m_finished; }
protected:
double m_beginTime;
double m_elapsedTime;
double m_duration;
+ bool m_finished;
int m_iterationCount;
int m_direction;
RefPtr<TimingFunction> m_timingFunction;