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 SerializedScriptValueForModules_h |
| 6 #define SerializedScriptValueForModules_h |
| 7 |
| 8 #include "bindings/core/v8/SerializedScriptValue.h" |
| 9 |
| 10 namespace blink { |
| 11 |
| 12 class SerializedScriptValueForModules final : public SerializedScriptValue { |
| 13 public: |
| 14 virtual v8::Handle<v8::Value> deserialize(v8::Isolate*, MessagePortArray* =
0, const WebBlobInfoArray* = 0) override; |
| 15 |
| 16 private: |
| 17 SerializedScriptValueForModules() { } |
| 18 SerializedScriptValueForModules(v8::Handle<v8::Value>, MessagePortArray* mes
sagePorts, ArrayBufferArray* arrayBuffers, WebBlobInfoArray*, ExceptionState&, v
8::Isolate*); |
| 19 explicit SerializedScriptValueForModules(const String& wireData) |
| 20 : SerializedScriptValue(wireData) { } |
| 21 |
| 22 friend class SerializedScriptValueForModulesFactory; |
| 23 }; |
| 24 |
| 25 } // namespace blink |
| 26 |
| 27 #endif |
| 28 |
OLD | NEW |