Index: Source/core/animation/TimedItemTiming.h |
diff --git a/Source/core/animation/TimedItemTiming.h b/Source/core/animation/TimedItemTiming.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..eb7d2457b0c424fc1d912c8ed2b1525574e836e8 |
--- /dev/null |
+++ b/Source/core/animation/TimedItemTiming.h |
@@ -0,0 +1,33 @@ |
+// Copyright 2014 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef TimedItemTiming_h |
+#define TimedItemTiming_h |
+ |
+#include "wtf/RefCounted.h" |
+#include "wtf/text/WTFString.h" |
+ |
+namespace WebCore { |
+ |
+class TimedItem; |
+ |
+class TimedItemTiming : public RefCounted<TimedItemTiming> { |
+public: |
+ static PassRefPtr<TimedItemTiming> create(TimedItem* parent); |
+ double delay(); |
dstockwell
2014/02/12 08:02:28
Tim is about to or has just landed endDelay, shoul
rjwright
2014/02/13 01:04:49
Done.
|
+ String fill(); |
+ double iterationStart(); |
+ double iterations(); |
+ void duration(String propertyName, bool& element0Enabled, double& element0, bool& element1Enambled, String& element1); |
+ double playbackRate(); |
+ String direction(); |
+ String easing(); |
+private: |
+ TimedItem* m_parent; |
+ TimedItemTiming(TimedItem* parent); |
+}; |
+ |
+} // namespace WebCore |
+ |
+#endif |