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

Unified Diff: Source/core/wawwa/RemotePlayer.idl

Issue 491053004: Expose Web Animations API to Web Workers (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Exposing the Web Animations API to Web Workers 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/RemotePlayer.idl
diff --git a/Source/modules/quota/StorageInfo.idl b/Source/core/wawwa/RemotePlayer.idl
similarity index 84%
copy from Source/modules/quota/StorageInfo.idl
copy to Source/core/wawwa/RemotePlayer.idl
index 112f4a472efd8fb27b9517619d4fe513efa3cca7..91a1e91bcbee5f3d6e7d644d1cf4205aaf1b942a 100644
--- a/Source/modules/quota/StorageInfo.idl
+++ b/Source/core/wawwa/RemotePlayer.idl
@@ -28,11 +28,18 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+
[
- GarbageCollected,
- NoInterfaceObject,
- RuntimeEnabled=QuotaPromise
-] interface StorageInfo {
- readonly attribute unsigned long long usage;
- readonly attribute unsigned long long quota;
+ Exposed=RemotePlayer,
+ Exposed=Worker,
+ WillBeGarbageCollected
+] interface RemotePlayer {
+ [RaisesException] void pause();
+ [RaisesException] void play();
+ [RaisesException] void cancel();
+ [RaisesException] void finish();
+ [RaisesException] void reverse();
};
+
+/*
dstockwell 2014/08/29 01:05:44 ??
nainar1 2014/08/29 06:01:40 Should be removed
+*/

Powered by Google App Engine
This is Rietveld 408576698