WebBluetooth API classes

This commit is contained in:
Attila Dusnoki 2016-03-02 15:00:13 +01:00
parent 00628704ca
commit e7d70cfabf
28 changed files with 999 additions and 28 deletions

View file

@ -8,6 +8,7 @@ interface Navigator {
// objects implementing this interface also implement the interfaces given below
};
Navigator implements NavigatorID;
Navigator implements NavigatorBluetooth;
//Navigator implements NavigatorLanguage;
//Navigator implements NavigatorOnLine;
//Navigator implements NavigatorContentUtils;
@ -25,3 +26,8 @@ interface NavigatorID {
boolean taintEnabled(); // constant false
readonly attribute DOMString userAgent;
};
[NoInterfaceObject]
interface NavigatorBluetooth {
readonly attribute Bluetooth bluetooth;
};