Index: modules/presentation/PresentationSession.idl |
diff --git a/modules/presentation/PresentationSession.idl b/modules/presentation/PresentationSession.idl |
new file mode 100644 |
index 0000000000000000000000000000000000000000..493f8ca4ed858ba2222e846e41c141ed8d924a4d |
--- /dev/null |
+++ b/modules/presentation/PresentationSession.idl |
@@ -0,0 +1,28 @@ |
+// Copyright 2014 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+// https://w3c.github.io/presentation-api/#interface-presentationsession |
+ |
+enum PresentationSessionState { |
+ "connected", |
+ "disconnected" |
+}; |
+ |
+[ |
+ GarbageCollected, |
+ RuntimeEnabled=Presentation |
+] interface PresentationSession : EventTarget { |
+ readonly attribute DOMString? id; |
+ readonly attribute PresentationSessionState state; |
+ void close(); |
+ attribute EventHandler onstatechange; |
+ |
+ // Communication |
+ attribute BinaryType binaryType; |
+ attribute EventHandler onmessage; |
+ [RaisesException] void send(DOMString message); |
+ [RaisesException] void send(Blob data); |
+ [RaisesException] void send(ArrayBuffer data); |
+ [RaisesException] void send(ArrayBufferView data); |
+}; |