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 SerializedScriptValueForModules(const String& wireData) | |
haraken
2014/11/17 01:27:50
Add explicit.
tasak
2014/11/17 08:42:30
Done.
| |
20 : SerializedScriptValue(wireData) { } | |
21 | |
22 friend class SerializedScriptValueForModulesFactory; | |
23 }; | |
24 | |
25 } // namespace blink | |
26 | |
27 #endif | |
28 | |
OLD | NEW |