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

Side by Side Diff: Source/bindings/modules/v8/SerializedScriptValueForModules.h

Issue 718383003: bindings: fixed incorrect dependency of SerializedScriptValue. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 1 month 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
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698