blob: 0f400e460b7eb23ff7867254fb070dd5d2755de5 [file] [log] [blame]
// Copyright 2016 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/remote-playback/#idl-def-remoteplayback
enum RemotePlaybackState {
"connecting",
"connected",
"disconnected"
};
callback RemotePlaybackAvailabilityCallback = void(boolean available);
[
Exposed=Window,
ActiveScriptWrappable,
RuntimeEnabled=RemotePlayback
] interface RemotePlayback : EventTarget {
readonly attribute RemotePlaybackState state;
attribute EventHandler onconnecting;
attribute EventHandler onconnect;
attribute EventHandler ondisconnect;
[Measure, CallWith=ScriptState] Promise<long> watchAvailability(RemotePlaybackAvailabilityCallback callback);
[CallWith=ScriptState] Promise<void> cancelWatchAvailability(optional long id);
[Measure, CallWith=ScriptState] Promise<void> prompt();
};