| Index: Source/bindings/scripts/v8_types.py
|
| diff --git a/Source/bindings/scripts/v8_types.py b/Source/bindings/scripts/v8_types.py
|
| index 5b7eac40f1914cc62ba2ce2cb19bb3944aaf53ee..a060522c66966c8ad8c334a8a75b9568d12387d7 100644
|
| --- a/Source/bindings/scripts/v8_types.py
|
| +++ b/Source/bindings/scripts/v8_types.py
|
| @@ -357,7 +357,8 @@ INCLUDES_FOR_TYPE = {
|
| 'core/dom/StaticNodeList.h',
|
| 'core/html/LabelsNodeList.h']),
|
| 'Promise': set(['bindings/core/v8/ScriptPromise.h']),
|
| - 'SerializedScriptValue': set(['bindings/core/v8/SerializedScriptValue.h']),
|
| + 'SerializedScriptValue': set(['bindings/core/v8/SerializedScriptValue.h',
|
| + 'bindings/core/v8/SerializedScriptValueFactory.h']),
|
| 'ScriptValue': set(['bindings/core/v8/ScriptValue.h']),
|
| }
|
|
|
| @@ -475,7 +476,7 @@ V8_VALUE_TO_CPP_VALUE = {
|
| 'EventTarget': 'V8DOMWrapper::isDOMWrapper({v8_value}) ? toWrapperTypeInfo(v8::Handle<v8::Object>::Cast({v8_value}))->toEventTarget(v8::Handle<v8::Object>::Cast({v8_value})) : 0',
|
| 'NodeFilter': 'toNodeFilter({v8_value}, info.Holder(), ScriptState::current({isolate}))',
|
| 'Promise': 'ScriptPromise::cast(ScriptState::current({isolate}), {v8_value})',
|
| - 'SerializedScriptValue': 'SerializedScriptValue::create({v8_value}, 0, 0, exceptionState, {isolate})',
|
| + 'SerializedScriptValue': 'SerializedScriptValueFactory::factory().create({v8_value}, 0, 0, exceptionState, {isolate})',
|
| 'ScriptValue': 'ScriptValue(ScriptState::current({isolate}), {v8_value})',
|
| 'Window': 'toDOMWindow({v8_value}, {isolate})',
|
| 'XPathNSResolver': 'toXPathNSResolver({isolate}, {v8_value})',
|
|
|