| 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..0e9cb2a7573f2c4608925cd0b4dcf0f4ca4bcb58
|
| --- /dev/null
|
| +++ b/Source/modules/presentation/PresentationSession.idl
|
| @@ -0,0 +1,24 @@
|
| +// 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);
|
| + void close();
|
| +
|
| + attribute EventHandler onmessage;
|
| + attribute EventHandler onstatechange;
|
| +};
|
|
|