| 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 64fe5090fc35c2ebc70a266ccf9596c1c6f63ee9..f3bde6ff7b7cb42783f236a299d0c5c2f8097dcd 100644
|
| --- a/third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.cpp
|
| +++ b/third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.cpp
|
| @@ -22,7 +22,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);
|
| + v8::Local<v8::Value> value = ToV8(it.value, context->Global(), isolate);
|
| map->Set(context, key, value).ToLocalChecked();
|
| }
|
| return ScriptValue::from(scriptState, map);
|
|
|