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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 #ifndef ProxyKeyframe_h
shans 2014/08/25 11:53:58 Add the copyright header at the top of new files.
2 #define ProxyKeyframe_h
3
4 #include "wtf/RefPtr.h"
5 #include "wtf/Vector.h"
6 #include "wtf/text/WTFString.h"
7
8 namespace blink {
9
10 struct ProxyPairs {
11 String property;
12 String value;
13 };
14
15 struct ProxyKeyframe {
16 double offset;
17 String easing;
18 String composite;
19
20 Vector<ProxyPairs> pairs;
21 };
22
23 }
24
25 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698