Chromium Code Reviews| Index: third_party/WebKit/Source/bindings/modules/v8/SerializedScriptValueForModulesFactory.h |
| diff --git a/third_party/WebKit/Source/bindings/modules/v8/SerializedScriptValueForModulesFactory.h b/third_party/WebKit/Source/bindings/modules/v8/SerializedScriptValueForModulesFactory.h |
| index b133793e484c030686d9dfcd6952ffca0a7397bc..cbc3af7b0ef91bf2a6483bf569694f7b1bf2ce63 100644 |
| --- a/third_party/WebKit/Source/bindings/modules/v8/SerializedScriptValueForModulesFactory.h |
| +++ b/third_party/WebKit/Source/bindings/modules/v8/SerializedScriptValueForModulesFactory.h |
| @@ -18,11 +18,14 @@ public: |
| PassRefPtr<SerializedScriptValue> create(v8::Isolate*, v8::Local<v8::Value>, Transferables*, WebBlobInfoArray*, ExceptionState&) override; |
| PassRefPtr<SerializedScriptValue> create(v8::Isolate*, const String&) override; |
| + bool extractTransferables(v8::Isolate*, Transferables&, ExceptionState&, v8::Local<v8::Value>&, unsigned) override; |
| protected: |
| ScriptValueSerializer::Status doSerialize(v8::Local<v8::Value>, SerializedScriptValueWriter&, Transferables*, WebBlobInfoArray*, BlobDataHandleMap&, v8::TryCatch&, String& errorMessage, v8::Isolate*) override; |
| v8::Local<v8::Value> deserialize(String& data, BlobDataHandleMap& blobDataHandles, ArrayBufferContentsArray*, ImageBitmapContentsArray*, v8::Isolate*, MessagePortArray* messagePorts, const WebBlobInfoArray*) override; |
| + |
| + void transferData(SerializedScriptValue*, SerializedScriptValueWriter&, Transferables*, ExceptionState&, v8::Isolate*) override; |
|
haraken
2016/04/21 00:29:03
Make the parameter order be consistent with extrac
xidachen
2016/04/21 15:32:48
Done.
|
| }; |
| } // namespace blink |