| Index: third_party/WebKit/Source/modules/nfc/NFC.cpp
|
| diff --git a/third_party/WebKit/Source/modules/nfc/NFC.cpp b/third_party/WebKit/Source/modules/nfc/NFC.cpp
|
| index 4a3d6ece9cdd2b6a0ae11be11120a9e197a1d927..3f5a697e35bca44975762a7699e2f98c16344b5a 100644
|
| --- a/third_party/WebKit/Source/modules/nfc/NFC.cpp
|
| +++ b/third_party/WebKit/Source/modules/nfc/NFC.cpp
|
| @@ -512,7 +512,7 @@ v8::Local<v8::Value> ToV8(
|
| device::nfc::mojom::blink::NFCRecordType::JSON) {
|
| v8::Local<v8::Value> json_object;
|
| v8::TryCatch try_catch(isolate);
|
| - if (!V8Call(v8::JSON::Parse(isolate, string), json_object, try_catch)) {
|
| + if (!v8::JSON::Parse(isolate, string).ToLocal(&json_object)) {
|
| return v8::Null(isolate);
|
| }
|
|
|
|
|