Chromium Code Reviews| Index: Source/core/wawwa/ProxyKeyframe.h |
| diff --git a/Source/core/wawwa/ProxyKeyframe.h b/Source/core/wawwa/ProxyKeyframe.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..a2fce4ed8fa6fadff6d3bc8d3cd51bd9c96176d9 |
| --- /dev/null |
| +++ b/Source/core/wawwa/ProxyKeyframe.h |
| @@ -0,0 +1,25 @@ |
| +#ifndef ProxyKeyframe_h |
|
shans
2014/08/25 11:53:58
Add the copyright header at the top of new files.
|
| +#define ProxyKeyframe_h |
| + |
| +#include "wtf/RefPtr.h" |
| +#include "wtf/Vector.h" |
| +#include "wtf/text/WTFString.h" |
| + |
| +namespace blink { |
| + |
| +struct ProxyPairs { |
| + String property; |
| + String value; |
| +}; |
| + |
| +struct ProxyKeyframe { |
| + double offset; |
| + String easing; |
| + String composite; |
| + |
| + Vector<ProxyPairs> pairs; |
| +}; |
| + |
| +} |
| + |
| +#endif |