| Index: Source/bindings/modules/v8/SerializedScriptValueForModules.h
|
| diff --git a/Source/bindings/modules/v8/SerializedScriptValueForModules.h b/Source/bindings/modules/v8/SerializedScriptValueForModules.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..fc3008264ccb8c8855256b80e294ae81ca6bd099
|
| --- /dev/null
|
| +++ b/Source/bindings/modules/v8/SerializedScriptValueForModules.h
|
| @@ -0,0 +1,28 @@
|
| +// Copyright 2014 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#ifndef SerializedScriptValueForModules_h
|
| +#define SerializedScriptValueForModules_h
|
| +
|
| +#include "bindings/core/v8/SerializedScriptValue.h"
|
| +
|
| +namespace blink {
|
| +
|
| +class SerializedScriptValueForModules final : public SerializedScriptValue {
|
| +public:
|
| + virtual v8::Handle<v8::Value> deserialize(v8::Isolate*, MessagePortArray* = 0, const WebBlobInfoArray* = 0) override;
|
| +
|
| +private:
|
| + SerializedScriptValueForModules() { }
|
| + SerializedScriptValueForModules(v8::Handle<v8::Value>, MessagePortArray* messagePorts, ArrayBufferArray* arrayBuffers, WebBlobInfoArray*, ExceptionState&, v8::Isolate*);
|
| + explicit SerializedScriptValueForModules(const String& wireData)
|
| + : SerializedScriptValue(wireData) { }
|
| +
|
| + friend class SerializedScriptValueForModulesFactory;
|
| +};
|
| +
|
| +} // namespace blink
|
| +
|
| +#endif
|
| +
|
|
|