| Index: third_party/WebKit/Source/bindings/scripts/v8_types.py
|
| diff --git a/third_party/WebKit/Source/bindings/scripts/v8_types.py b/third_party/WebKit/Source/bindings/scripts/v8_types.py
|
| index 51f595d3504c1f81f658a8f3cd2d62f7291074e4..87d6ef20a9fa11c86a90c7259505d9f72300f803 100644
|
| --- a/third_party/WebKit/Source/bindings/scripts/v8_types.py
|
| +++ b/third_party/WebKit/Source/bindings/scripts/v8_types.py
|
| @@ -870,7 +870,7 @@ CPP_VALUE_TO_V8_VALUE = {
|
| '{isolate}, impl->getExecutionContext()) : ' +
|
| 'v8::Null({isolate}).As<v8::Value>()'),
|
| 'ScriptValue': '{cpp_value}.v8Value()',
|
| - 'SerializedScriptValue': '{cpp_value} ? {cpp_value}->deserialize() : v8::Local<v8::Value>(v8::Null({isolate}))',
|
| + 'SerializedScriptValue': 'v8Deserialize({isolate}, {cpp_value})',
|
| # General
|
| 'array': 'toV8({cpp_value}, {creation_context}, {isolate})',
|
| 'FrozenArray': 'freezeV8Object(toV8({cpp_value}, {creation_context}, {isolate}), {isolate})',
|
|
|