| Index: Source/bindings/core/v8/Dictionary.cpp
|
| diff --git a/Source/bindings/core/v8/Dictionary.cpp b/Source/bindings/core/v8/Dictionary.cpp
|
| index 88e8213ea2b6f59a575a432e622668c77aa15f1a..7bf0a302b48a340a4e94ac02c0a9090d815ca4a2 100644
|
| --- a/Source/bindings/core/v8/Dictionary.cpp
|
| +++ b/Source/bindings/core/v8/Dictionary.cpp
|
| @@ -155,7 +155,7 @@ bool Dictionary::getWithUndefinedOrNullCheck(const String& key, RefPtrWillBeMemb
|
| if (!getKey(key, v8Value) || blink::isUndefinedOrNull(v8Value))
|
| return false;
|
|
|
| - value = V8Element::toNativeWithTypeCheck(m_isolate, v8Value);
|
| + value = V8Element::toImplWithTypeCheck(m_isolate, v8Value);
|
| return true;
|
| }
|
|
|
| @@ -165,7 +165,7 @@ bool Dictionary::getWithUndefinedOrNullCheck(const String& key, RefPtrWillBeMemb
|
| if (!getKey(key, v8Value) || blink::isUndefinedOrNull(v8Value))
|
| return false;
|
|
|
| - value = V8Path2D::toNativeWithTypeCheck(m_isolate, v8Value);
|
| + value = V8Path2D::toImplWithTypeCheck(m_isolate, v8Value);
|
| return true;
|
| }
|
|
|
|
|