 Chromium Code Reviews
 Chromium Code Reviews Issue 491053004:
  Expose Web Animations API to Web Workers  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/blink.git@master
    
  
    Issue 491053004:
  Expose Web Animations API to Web Workers  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/blink.git@master| OLD | NEW | 
|---|---|
| (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 | |
| OLD | NEW |