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

Side by Side Diff: third_party/WebKit/Source/bindings/modules/v8/ScriptValueSerializerForModules.cpp

Issue 2097563002: Split the mediastream module in Blink into mediastream and peerconnection (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add DEPS file Created 4 years, 5 months 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
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "bindings/modules/v8/ScriptValueSerializerForModules.h" 5 #include "bindings/modules/v8/ScriptValueSerializerForModules.h"
6 6
7 #include "bindings/core/v8/SerializationTag.h" 7 #include "bindings/core/v8/SerializationTag.h"
8 #include "bindings/core/v8/V8Binding.h" 8 #include "bindings/core/v8/V8Binding.h"
9 #include "bindings/modules/v8/V8CryptoKey.h" 9 #include "bindings/modules/v8/V8CryptoKey.h"
10 #include "bindings/modules/v8/V8DOMFileSystem.h" 10 #include "bindings/modules/v8/V8DOMFileSystem.h"
11 #include "bindings/modules/v8/V8RTCCertificate.h" 11 #include "bindings/modules/v8/V8RTCCertificate.h"
12 #include "modules/filesystem/DOMFileSystem.h" 12 #include "modules/filesystem/DOMFileSystem.h"
13 #include "modules/mediastream/RTCCertificate.h" 13 #include "modules/peerconnection/RTCCertificate.h"
14 #include "public/platform/Platform.h" 14 #include "public/platform/Platform.h"
15 #include "public/platform/WebRTCCertificate.h" 15 #include "public/platform/WebRTCCertificate.h"
16 #include "public/platform/WebRTCCertificateGenerator.h" 16 #include "public/platform/WebRTCCertificateGenerator.h"
17 #include "wtf/PtrUtil.h" 17 #include "wtf/PtrUtil.h"
18 #include <memory> 18 #include <memory>
19 19
20 namespace blink { 20 namespace blink {
21 21
22 enum CryptoKeyAlgorithmTag { 22 enum CryptoKeyAlgorithmTag {
23 AesCbcTag = 1, 23 AesCbcTag = 1,
(...skipping 657 matching lines...) Expand 10 before | Expand all | Expand 10 after
681 : ScriptValueDeserializer(reader, messagePorts, arrayBufferContents, imageBi tmapContents) 681 : ScriptValueDeserializer(reader, messagePorts, arrayBufferContents, imageBi tmapContents)
682 { 682 {
683 } 683 }
684 684
685 bool ScriptValueDeserializerForModules::read(v8::Local<v8::Value>* value) 685 bool ScriptValueDeserializerForModules::read(v8::Local<v8::Value>* value)
686 { 686 {
687 return toSerializedScriptValueReaderForModules(reader()).read(value, *this); 687 return toSerializedScriptValueReaderForModules(reader()).read(value, *this);
688 } 688 }
689 689
690 } // namespace blink 690 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698