OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef SerializedScriptValueForModulesFactory_h |
| 6 #define SerializedScriptValueForModulesFactory_h |
| 7 |
| 8 #include "bindings/core/v8/SerializedScriptValueFactory.h" |
| 9 #include "wtf/Noncopyable.h" |
| 10 |
| 11 namespace blink { |
| 12 |
| 13 class SerializedScriptValueForModulesFactory final : public SerializedScriptValu
eFactory { |
| 14 WTF_MAKE_NONCOPYABLE(SerializedScriptValueForModulesFactory); |
| 15 public: |
| 16 SerializedScriptValueForModulesFactory() : SerializedScriptValueFactory() {
} |
| 17 |
| 18 virtual PassRefPtr<SerializedScriptValue> create(v8::Handle<v8::Value>, Mess
agePortArray*, ArrayBufferArray*, WebBlobInfoArray*, ExceptionState&, v8::Isolat
e*) override; |
| 19 virtual PassRefPtr<SerializedScriptValue> create(const String&, v8::Isolate*
) override; |
| 20 |
| 21 protected: |
| 22 virtual ScriptValueSerializer::Status doSerialize(v8::Handle<v8::Value>, Ser
ializedScriptValueWriter&, MessagePortArray*, ArrayBufferArray*, WebBlobInfoArra
y*, BlobDataHandleMap&, v8::TryCatch&, String& errorMessage, v8::Isolate*) overr
ide; |
| 23 |
| 24 virtual v8::Handle<v8::Value> deserialize(String& data, BlobDataHandleMap& b
lobDataHandles, ArrayBufferContentsArray*, v8::Isolate*, MessagePortArray* messa
gePorts, const WebBlobInfoArray*) override; |
| 25 }; |
| 26 |
| 27 } // namespace blink |
| 28 |
| 29 #endif // SerializedScriptValueForModulesFactory_h |
| 30 |
OLD | NEW |