| Index: third_party/WebKit/Source/bindings/modules/v8/V8BindingForModules.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/modules/v8/V8BindingForModules.cpp b/third_party/WebKit/Source/bindings/modules/v8/V8BindingForModules.cpp
|
| index c40d500d2c139b046667da9014bfb1ddd2a59e58..3dbd2b4195ec7eee427514b1316737aa846a1ab0 100644
|
| --- a/third_party/WebKit/Source/bindings/modules/v8/V8BindingForModules.cpp
|
| +++ b/third_party/WebKit/Source/bindings/modules/v8/V8BindingForModules.cpp
|
| @@ -319,7 +319,7 @@ static v8::Local<v8::Value> deserializeIDBValueData(v8::Isolate* isolate, const
|
| return v8::Null(isolate);
|
|
|
| const SharedBuffer* valueData = value->data();
|
| - RefPtr<SerializedScriptValue> serializedValue = SerializedScriptValueFactory::instance().createFromWireBytes(valueData->data(), valueData->size());
|
| + RefPtr<SerializedScriptValue> serializedValue = SerializedScriptValue::create(valueData->data(), valueData->size());
|
| return serializedValue->deserialize(isolate, nullptr, value->blobInfo());
|
| }
|
|
|
|
|