| Index: third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.cpp
|
| diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.cpp b/third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.cpp
|
| index 237095c1b7f9f2bb8f69d12e246250dbd97cbd57..c67f19ff93455a5a28cc5d71260c66f48628dfcf 100644
|
| --- a/third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.cpp
|
| +++ b/third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.cpp
|
| @@ -23,7 +23,7 @@ ScriptValue IDBObserverChanges::records(ScriptState* scriptState)
|
| for (const auto& it : m_records) {
|
| v8::Local<v8::String> key = v8String(isolate, m_database->getObjectStoreName(it.key));
|
| v8::Local<v8::Value> value = toV8(it.value, context->Global(), isolate);
|
| - v8CallOrCrash(map->Set(context, key, value));
|
| + map->Set(context, key, value).ToLocalChecked();
|
| }
|
| return ScriptValue::from(scriptState, map);
|
| }
|
|
|