summaryrefslogtreecommitdiff
path: root/Source/WebCore/page/Location.idl
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/page/Location.idl')
-rw-r--r--Source/WebCore/page/Location.idl18
1 files changed, 9 insertions, 9 deletions
diff --git a/Source/WebCore/page/Location.idl b/Source/WebCore/page/Location.idl
index d510052c3..d5d27e2c6 100644
--- a/Source/WebCore/page/Location.idl
+++ b/Source/WebCore/page/Location.idl
@@ -32,18 +32,18 @@ module window {
#if defined(V8_BINDING) && V8_BINDING
CheckDomainSecurity,
#endif
- DelegatingGetOwnPropertySlot,
- DelegatingPutFunction,
- GenerateIsReachable=ImplFrame,
+ JSCustomGetOwnPropertySlotDelegate,
+ CustomNamedSetter,
+ JSGenerateIsReachable=ImplFrame,
CustomDeleteProperty,
CustomGetPropertyNames,
- CustomDefineGetter,
- DelegatingPrototypePutFunction,
- CustomPrototypeDefineGetter,
+ JSCustomDefineOwnProperty,
+ JSCustomPrototypePutDelegate,
+ JSCustomPrototypeDefineOwnProperty,
OmitConstructor
] Location {
#if !defined(LANGUAGE_CPP) || !LANGUAGE_CPP
- attribute [DoNotCheckDomainSecurityOnSet, CustomSetter, V8Unforgeable] DOMString href;
+ attribute [DoNotCheckDomainSecurityOnSetter, CustomSetter, V8Unforgeable] DOMString href;
#endif
[Custom, V8OnInstance] void assign(in [Optional=CallWithDefaultValue] DOMString url);
@@ -64,10 +64,10 @@ module window {
#endif
#if defined(LANGUAGE_JAVASCRIPT) && LANGUAGE_JAVASCRIPT
- [DontEnum, Custom, V8OnInstance, V8ReadOnly, ImplementationFunction=toStringFunction] DOMString toString();
+ [NotEnumerable, Custom, V8OnInstance, V8ReadOnly, ImplementedAs=toStringFunction] DOMString toString();
#endif
#if defined(V8_BINDING) && V8_BINDING
- [DontEnum, Custom, V8OnInstance, V8ReadOnly] DOMObject valueOf();
+ [NotEnumerable, Custom, V8OnInstance, V8ReadOnly] DOMObject valueOf();
#endif
};