| Index: modules/presentation/PresentationSession.idl
|
| diff --git a/modules/presentation/PresentationSession.idl b/modules/presentation/PresentationSession.idl
|
| deleted file mode 100644
|
| index 493f8ca4ed858ba2222e846e41c141ed8d924a4d..0000000000000000000000000000000000000000
|
| --- a/modules/presentation/PresentationSession.idl
|
| +++ /dev/null
|
| @@ -1,28 +0,0 @@
|
| -// 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);
|
| -};
|
|
|