diff options
Diffstat (limited to 'WebCore/bindings/v8/custom/V8DocumentLocationCustom.cpp')
-rw-r--r-- | WebCore/bindings/v8/custom/V8DocumentLocationCustom.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/WebCore/bindings/v8/custom/V8DocumentLocationCustom.cpp b/WebCore/bindings/v8/custom/V8DocumentLocationCustom.cpp index dfcacef..440bbdc 100644 --- a/WebCore/bindings/v8/custom/V8DocumentLocationCustom.cpp +++ b/WebCore/bindings/v8/custom/V8DocumentLocationCustom.cpp @@ -34,17 +34,17 @@ namespace WebCore { ACCESSOR_GETTER(DocumentLocation) { - Document* document = V8Proxy::DOMWrapperToNative<Document>(info.Holder()); + Document* document = V8DOMWrapper::convertDOMWrapperToNative<Document>(info.Holder()); if (!document->frame()) return v8::Null(); DOMWindow* window = document->frame()->domWindow(); - return V8Proxy::ToV8Object(V8ClassIndex::LOCATION, window->location()); + return V8DOMWrapper::convertToV8Object(V8ClassIndex::LOCATION, window->location()); } ACCESSOR_SETTER(DocumentLocation) { - Document* document = V8Proxy::DOMWrapperToNative<Document>(info.Holder()); + Document* document = V8DOMWrapper::convertDOMWrapperToNative<Document>(info.Holder()); if (!document->frame()) return; |