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

Side by Side Diff: Source/bindings/modules/v8/SerializedScriptValueForModulesFactory.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 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 : public SerializedScriptValueFacto ry {
haraken 2014/11/17 01:27:50 Add final.
tasak 2014/11/17 08:42:30 Done.
14 WTF_MAKE_NONCOPYABLE(SerializedScriptValueForModulesFactory);
15 public:
16 SerializedScriptValueForModulesFactory() { }
17
18 virtual PassRefPtr<SerializedScriptValue> create(v8::Handle<v8::Value>, Mess agePortArray*, ArrayBufferArray*, ExceptionState&, v8::Isolate*) override;
19 virtual PassRefPtr<SerializedScriptValue> createFromWire(const String&) over ride;
20 virtual PassRefPtr<SerializedScriptValue> create(const String&, v8::Isolate* ) override;
21 virtual PassRefPtr<SerializedScriptValue> create() override;
22 virtual PassRefPtr<SerializedScriptValue> create(const ScriptValue&, WebBlob InfoArray*, ExceptionState&, v8::Isolate*) override;
23 };
24
25 } // namespace blink
26
27 #endif // SerializedScriptValueForModulesFactory_h
28
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698