| Index: Source/bindings/v8/Dictionary.cpp
|
| diff --git a/Source/bindings/v8/Dictionary.cpp b/Source/bindings/v8/Dictionary.cpp
|
| index 156eede687c16fe10441c95643ad905ebfb80cbc..caaad219a5080724fe72b6827935133ec673c8e5 100644
|
| --- a/Source/bindings/v8/Dictionary.cpp
|
| +++ b/Source/bindings/v8/Dictionary.cpp
|
| @@ -350,7 +350,7 @@ bool Dictionary::get(const String& key, MessagePortArray& value) const
|
| if (WebCore::isUndefinedOrNull(v8Value))
|
| return true;
|
| bool success = false;
|
| - value = toRefPtrNativeArray<MessagePort, V8MessagePort>(v8Value, key, m_isolate, &success);
|
| + value = toRefPtrWillBeMemberNativeArray<MessagePort, V8MessagePort>(v8Value, key, m_isolate, &success);
|
| return success;
|
| }
|
|
|
|
|