Index: Source/core/animation/EffectInput.h |
diff --git a/Source/core/animation/EffectInput.h b/Source/core/animation/EffectInput.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..fecaec83599866f15c1c345ccf96008f82904c55 |
--- /dev/null |
+++ b/Source/core/animation/EffectInput.h |
@@ -0,0 +1,24 @@ |
+// 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 EffectInput_h |
+#define EffectInput_h |
+ |
+#include "core/animation/AnimationEffect.h" |
+#include "wtf/Vector.h" |
+ |
+namespace WebCore { |
+ |
+class AnimationEffect; |
+class Dictionary; |
+class Element; |
+ |
+class EffectInput { |
+public: |
+ static PassRefPtrWillBeRawPtr<AnimationEffect> convert(Element*, Vector<Dictionary> keyframeDictionaryVector, bool unsafe = false); |
+}; |
+ |
+} // namespace WebCore |
+ |
+#endif |