2018-09-13 23:04:55 +03:00
|
|
|
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2015-03-19 10:48:28 +03:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/.
|
2016-10-17 03:19:00 +03:00
|
|
|
*
|
|
|
|
* The origin of this IDL file is
|
|
|
|
* https://w3c.github.io/presentation-api/#interface-presentationavailability
|
2015-03-19 10:48:28 +03:00
|
|
|
*/
|
|
|
|
|
2016-06-03 14:50:30 +03:00
|
|
|
[Pref="dom.presentation.controller.enabled"]
|
2015-09-14 05:39:57 +03:00
|
|
|
interface PresentationAvailability : EventTarget {
|
|
|
|
/*
|
|
|
|
* If there is at least one device discovered by UA, the value is |true|.
|
|
|
|
* Otherwise, its value should be |false|.
|
|
|
|
*/
|
|
|
|
readonly attribute boolean value;
|
2015-03-19 10:48:28 +03:00
|
|
|
|
2015-09-14 05:39:57 +03:00
|
|
|
/*
|
|
|
|
* It is called when device availability changes.
|
|
|
|
*/
|
|
|
|
attribute EventHandler onchange;
|
2015-03-19 10:48:28 +03:00
|
|
|
};
|