Chromium Code Reviews| Index: Source/modules/presentation/PresentationSession.idl |
| diff --git a/Source/modules/presentation/PresentationSession.idl b/Source/modules/presentation/PresentationSession.idl |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..b705a2ced7dfc556c10ce0795926af5312db1881 |
| --- /dev/null |
| +++ b/Source/modules/presentation/PresentationSession.idl |
| @@ -0,0 +1,22 @@ |
| +// 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. |
| + |
| +// http://webscreens.github.io/presentation-api/#presentationsession |
| + |
| +enum PresentationSessionState { |
| + "connected", |
| + "disconnected" |
| +}; |
| + |
| +[ |
| + GarbageCollected, |
| + RuntimeEnabled=Presentation |
| +] interface PresentationSession : EventTarget { |
| + readonly attribute DOMString? id; |
| + readonly attribute PresentationSessionState state; |
| + void postMessage(DOMString message); |
|
Peter Beverloo
2014/10/29 20:51:20
nit: blank lines between the "sections".
whywhat
2014/10/29 22:09:27
Done.
|
| + void close(); |
| + attribute EventHandler onmessage; |
| + attribute EventHandler onstatechange; |
| +}; |