diff options
Diffstat (limited to 'Source/WebCore/page/Navigator.idl')
-rw-r--r-- | Source/WebCore/page/Navigator.idl | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/Source/WebCore/page/Navigator.idl b/Source/WebCore/page/Navigator.idl index 638d5a56c..f7c4ae28f 100644 --- a/Source/WebCore/page/Navigator.idl +++ b/Source/WebCore/page/Navigator.idl @@ -20,23 +20,11 @@ [ GenerateIsReachable=ImplFrame, ] interface Navigator { - readonly attribute DOMString appCodeName; - readonly attribute DOMString appName; - readonly attribute DOMString appVersion; - readonly attribute DOMString language; - readonly attribute DOMString userAgent; - readonly attribute DOMString platform; readonly attribute DOMPluginArray plugins; readonly attribute DOMMimeTypeArray mimeTypes; - readonly attribute DOMString product; - readonly attribute DOMString productSub; - readonly attribute DOMString vendor; - readonly attribute DOMString vendorSub; readonly attribute boolean cookieEnabled; boolean javaEnabled(); - readonly attribute boolean onLine; - // FIXME: Convert this #if'def to an IDL conditional attribute. #if defined(WTF_PLATFORM_IOS) && WTF_PLATFORM_IOS readonly attribute boolean standalone; @@ -45,3 +33,7 @@ void getStorageUpdates(); // FIXME: Remove this method or rename to yieldForStorageUpdates. }; +Navigator implements NavigatorConcurrentHardware; +Navigator implements NavigatorID; +Navigator implements NavigatorLanguage; +Navigator implements NavigatorOnLine; |