Index: Source/bindings/v8/Dictionary.cpp |
diff --git a/Source/bindings/v8/Dictionary.cpp b/Source/bindings/v8/Dictionary.cpp |
index 13ba146349abc3d576d1478182048fa7502f6956..156eede687c16fe10441c95643ad905ebfb80cbc 100644 |
--- a/Source/bindings/v8/Dictionary.cpp |
+++ b/Source/bindings/v8/Dictionary.cpp |
@@ -317,7 +317,7 @@ bool Dictionary::get(const String& key, unsigned long long& value) const |
return true; |
} |
-bool Dictionary::get(const String& key, RefPtrWillBeMember<DOMWindow>& value) const |
+bool Dictionary::get(const String& key, RefPtrWillBeMember<LocalDOMWindow>& value) const |
{ |
v8::Local<v8::Value> v8Value; |
if (!getKey(key, v8Value)) |
@@ -524,7 +524,7 @@ bool Dictionary::get(const String& key, RefPtrWillBeMember<EventTarget>& value) |
return false; |
value = nullptr; |
- // We need to handle a DOMWindow specially, because a DOMWindow wrapper |
+ // We need to handle a LocalDOMWindow specially, because a LocalDOMWindow wrapper |
// exists on a prototype chain of v8Value. |
if (v8Value->IsObject()) { |
v8::Handle<v8::Object> wrapper = v8::Handle<v8::Object>::Cast(v8Value); |