Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(73)

Side by Side Diff: third_party/WebKit/Source/bindings/modules/v8/SerializedScriptValueForModulesFactory.h

Issue 1862033002: Make OffscreenCanvas Transferable (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase, compiles but crashes some layout tests Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef SerializedScriptValueForModulesFactory_h 5 #ifndef SerializedScriptValueForModulesFactory_h
6 #define SerializedScriptValueForModulesFactory_h 6 #define SerializedScriptValueForModulesFactory_h
7 7
8 #include "bindings/core/v8/SerializedScriptValueFactory.h" 8 #include "bindings/core/v8/SerializedScriptValueFactory.h"
9 #include "wtf/Noncopyable.h" 9 #include "wtf/Noncopyable.h"
10 10
11 namespace blink { 11 namespace blink {
12 12
13 class SerializedScriptValueForModulesFactory final : public SerializedScriptValu eFactory { 13 class SerializedScriptValueForModulesFactory final : public SerializedScriptValu eFactory {
14 USING_FAST_MALLOC(SerializedScriptValueForModulesFactory); 14 USING_FAST_MALLOC(SerializedScriptValueForModulesFactory);
15 WTF_MAKE_NONCOPYABLE(SerializedScriptValueForModulesFactory); 15 WTF_MAKE_NONCOPYABLE(SerializedScriptValueForModulesFactory);
16 public: 16 public:
17 SerializedScriptValueForModulesFactory() : SerializedScriptValueFactory() { } 17 SerializedScriptValueForModulesFactory() : SerializedScriptValueFactory() { }
18 18
19 PassRefPtr<SerializedScriptValue> create(v8::Isolate*, v8::Local<v8::Value>, Transferables*, WebBlobInfoArray*, ExceptionState&) override; 19 PassRefPtr<SerializedScriptValue> create(v8::Isolate*, v8::Local<v8::Value>, Transferables*, WebBlobInfoArray*, ExceptionState&) override;
20 PassRefPtr<SerializedScriptValue> create(v8::Isolate*, const String&) overri de; 20 PassRefPtr<SerializedScriptValue> create(v8::Isolate*, const String&) overri de;
21 21
22 protected: 22 protected:
23 ScriptValueSerializer::Status doSerialize(v8::Local<v8::Value>, SerializedSc riptValueWriter&, Transferables*, WebBlobInfoArray*, BlobDataHandleMap&, v8::Try Catch&, String& errorMessage, v8::Isolate*) override; 23 ScriptValueSerializer::Status doSerialize(v8::Local<v8::Value>, SerializedSc riptValueWriter&, Transferables*, WebBlobInfoArray*, BlobDataHandleMap&, v8::Try Catch&, String& errorMessage, v8::Isolate*) override;
24 24
25 v8::Local<v8::Value> deserialize(String& data, BlobDataHandleMap& blobDataHa ndles, ArrayBufferContentsArray*, ImageBitmapContentsArray*, v8::Isolate*, Messa gePortArray* messagePorts, const WebBlobInfoArray*) override; 25 v8::Local<v8::Value> deserialize(String& data, BlobDataHandleMap& blobDataHa ndles, ArrayBufferContentsArray*, ImageBitmapContentsArray*, v8::Isolate*, Messa gePortArray* messagePorts, const WebBlobInfoArray*) override;
26
27 void transferData(SerializedScriptValue*, SerializedScriptValueWriter&, Tran sferables*, ExceptionState&, v8::Isolate*) override;
26 }; 28 };
27 29
28 } // namespace blink 30 } // namespace blink
29 31
30 #endif // SerializedScriptValueForModulesFactory_h 32 #endif // SerializedScriptValueForModulesFactory_h
31 33
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698