| Index: third_party/WebKit/Source/bindings/tests/results/core/V8TestPermissiveDictionary.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/tests/results/core/V8TestPermissiveDictionary.cpp b/third_party/WebKit/Source/bindings/tests/results/core/V8TestPermissiveDictionary.cpp
|
| index d0c61ba531b5f789571817ffc072b963948f876f..ec34f5fa0f99184955328e9c6e741108fc8b66db 100644
|
| --- a/third_party/WebKit/Source/bindings/tests/results/core/V8TestPermissiveDictionary.cpp
|
| +++ b/third_party/WebKit/Source/bindings/tests/results/core/V8TestPermissiveDictionary.cpp
|
| @@ -25,13 +25,10 @@ void V8TestPermissiveDictionary::toImpl(v8::Isolate* isolate, v8::Local<v8::Valu
|
| // Do nothing.
|
| return;
|
| }
|
| + v8::Local<v8::Object> v8Object = v8Value.As<v8::Object>();
|
| + (void)v8Object;
|
|
|
| v8::TryCatch block(isolate);
|
| - v8::Local<v8::Object> v8Object;
|
| - if (!v8Call(v8Value->ToObject(isolate->GetCurrentContext()), v8Object, block)) {
|
| - exceptionState.rethrowV8Exception(block.Exception());
|
| - return;
|
| - }
|
| v8::Local<v8::Value> booleanMemberValue;
|
| if (!v8Object->Get(isolate->GetCurrentContext(), v8AtomicString(isolate, "booleanMember")).ToLocal(&booleanMemberValue)) {
|
| exceptionState.rethrowV8Exception(block.Exception());
|
|
|