summaryrefslogtreecommitdiff
path: root/Source/WebCore/page/Navigator.idl
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@nokia.com>2012-02-09 14:16:12 +0100
committerSimon Hausmann <simon.hausmann@nokia.com>2012-02-09 14:16:12 +0100
commit03e12282df9aa1e1fb05a8b90f1cfc2e08764cec (patch)
tree52599cd0ab782b1768e23ad176f7618f98333cb6 /Source/WebCore/page/Navigator.idl
parentcd44dc59cdfc39534aef4d417e9f3c412e3be139 (diff)
downloadqtwebkit-03e12282df9aa1e1fb05a8b90f1cfc2e08764cec.tar.gz
Imported WebKit commit e09a82039aa4273ab318b71122e92d8e5f233525 (http://svn.webkit.org/repository/webkit/trunk@107223)
Diffstat (limited to 'Source/WebCore/page/Navigator.idl')
-rw-r--r--Source/WebCore/page/Navigator.idl8
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/WebCore/page/Navigator.idl b/Source/WebCore/page/Navigator.idl
index 6fe43e660..213fab125 100644
--- a/Source/WebCore/page/Navigator.idl
+++ b/Source/WebCore/page/Navigator.idl
@@ -20,7 +20,7 @@
module window {
interface [
- GenerateIsReachable=ImplFrame,
+ JSGenerateIsReachable=ImplFrame,
OmitConstructor
] Navigator {
readonly attribute DOMString appCodeName;
@@ -41,11 +41,11 @@ module window {
readonly attribute boolean onLine;
#if defined(ENABLE_GEOLOCATION) && ENABLE_GEOLOCATION
- readonly attribute [EnabledAtRuntime] Geolocation geolocation;
+ readonly attribute [V8EnabledAtRuntime] Geolocation geolocation;
#endif
#if defined(ENABLE_POINTER_LOCK) && ENABLE_POINTER_LOCK
- readonly attribute [EnabledAtRuntime] PointerLock webkitPointer;
+ readonly attribute [V8EnabledAtRuntime] PointerLock webkitPointer;
#endif
void getStorageUpdates(); // FIXME: Remove this method or rename to yieldForStorageUpdates.
@@ -56,7 +56,7 @@ module window {
#endif
#if defined(ENABLE_MEDIA_STREAM) && ENABLE_MEDIA_STREAM
- [Custom, EnabledAtRuntime] void webkitGetUserMedia(in DOMString options,
+ [Custom, V8EnabledAtRuntime] void webkitGetUserMedia(in DOMString options,
in [Callback=FunctionOnly] NavigatorUserMediaSuccessCallback successCallback,
in [Callback=FunctionOnly, Optional] NavigatorUserMediaErrorCallback errorCallback)
raises(DOMException);