Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2688)

Unified Diff: Source/core/wawwa/ProxyKeyframe.h

Issue 491053004: Expose Web Animations API to Web Workers (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698