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

Side by Side Diff: third_party/WebKit/Source/bindings/core/v8/ScriptValueSerializer.h

Issue 1875343002: Move WTF classes related to typed arrays to wtf/typed_arrays (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #ifndef ScriptValueSerializer_h 5 #ifndef ScriptValueSerializer_h
6 #define ScriptValueSerializer_h 6 #define ScriptValueSerializer_h
7 7
8 #include "bindings/core/v8/SerializationTag.h" 8 #include "bindings/core/v8/SerializationTag.h"
9 #include "bindings/core/v8/SerializedScriptValue.h" 9 #include "bindings/core/v8/SerializedScriptValue.h"
10 #include "bindings/core/v8/V8Binding.h" 10 #include "bindings/core/v8/V8Binding.h"
11 #include "core/CoreExport.h" 11 #include "core/CoreExport.h"
12 #include "wtf/ArrayBufferContents.h"
13 #include "wtf/HashMap.h" 12 #include "wtf/HashMap.h"
14 #include "wtf/Noncopyable.h" 13 #include "wtf/Noncopyable.h"
15 #include "wtf/Vector.h" 14 #include "wtf/Vector.h"
16 #include "wtf/text/WTFString.h" 15 #include "wtf/text/WTFString.h"
16 #include "wtf/typed_arrays/ArrayBufferContents.h"
17 #include <v8.h> 17 #include <v8.h>
18 18
19 namespace blink { 19 namespace blink {
20 20
21 class CompositorProxy; 21 class CompositorProxy;
22 class DOMArrayBuffer; 22 class DOMArrayBuffer;
23 class DOMArrayBufferView; 23 class DOMArrayBufferView;
24 class DOMSharedArrayBuffer; 24 class DOMSharedArrayBuffer;
25 class File; 25 class File;
26 class FileList; 26 class FileList;
(...skipping 614 matching lines...) Expand 10 before | Expand all | Expand 10 after
641 ArrayBufferContentsArray* m_arrayBufferContents; 641 ArrayBufferContentsArray* m_arrayBufferContents;
642 ImageBitmapContentsArray* m_imageBitmapContents; 642 ImageBitmapContentsArray* m_imageBitmapContents;
643 Vector<v8::Local<v8::Value>> m_arrayBuffers; 643 Vector<v8::Local<v8::Value>> m_arrayBuffers;
644 Vector<v8::Local<v8::Value>> m_imageBitmaps; 644 Vector<v8::Local<v8::Value>> m_imageBitmaps;
645 uint32_t m_version; 645 uint32_t m_version;
646 }; 646 };
647 647
648 } // namespace blink 648 } // namespace blink
649 649
650 #endif // ScriptValueSerializer_h 650 #endif // ScriptValueSerializer_h
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698