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

Side by Side Diff: Source/wtf/Forward.h

Issue 267133002: [webcrypto] Allow both ArrayBuffer and ArrayBufferView as inputs to crypto.subtle methods. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rename ArrayBytes --> ArrayPiece Created 6 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « Source/wtf/ArrayPiece.cpp ('k') | Source/wtf/wtf.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2009, 2011 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2009, 2011 Apple Inc. All rights reserved.
3 * 3 *
4 * This library is free software; you can redistribute it and/or 4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public 5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either 6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version. 7 * version 2 of the License, or (at your option) any later version.
8 * 8 *
9 * This library is distributed in the hope that it will be useful, 9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 15 matching lines...) Expand all
26 namespace WTF { 26 namespace WTF {
27 template<typename T> class Function; 27 template<typename T> class Function;
28 template<typename T> class OwnPtr; 28 template<typename T> class OwnPtr;
29 template<typename T> class PassOwnPtr; 29 template<typename T> class PassOwnPtr;
30 template<typename T> class PassRefPtr; 30 template<typename T> class PassRefPtr;
31 template<typename T> class RefPtr; 31 template<typename T> class RefPtr;
32 template<typename T, size_t inlineCapacity, typename Allocator> class Vector ; 32 template<typename T, size_t inlineCapacity, typename Allocator> class Vector ;
33 33
34 class ArrayBuffer; 34 class ArrayBuffer;
35 class ArrayBufferView; 35 class ArrayBufferView;
36 class ArrayPiece;
36 class AtomicString; 37 class AtomicString;
37 class CString; 38 class CString;
38 class Float32Array; 39 class Float32Array;
39 class Float64Array; 40 class Float64Array;
40 class Int8Array; 41 class Int8Array;
41 class Int16Array; 42 class Int16Array;
42 class Int32Array; 43 class Int32Array;
43 template<size_t size> 44 template<size_t size>
44 class SizeSpecificPartitionAllocator; 45 class SizeSpecificPartitionAllocator;
45 class String; 46 class String;
46 template <typename T> class StringBuffer; 47 template <typename T> class StringBuffer;
47 class StringBuilder; 48 class StringBuilder;
48 class StringImpl; 49 class StringImpl;
49 class Uint8Array; 50 class Uint8Array;
50 class Uint8ClampedArray; 51 class Uint8ClampedArray;
51 class Uint16Array; 52 class Uint16Array;
52 class Uint32Array; 53 class Uint32Array;
53 } 54 }
54 55
55 using WTF::Function; 56 using WTF::Function;
56 using WTF::OwnPtr; 57 using WTF::OwnPtr;
57 using WTF::PassOwnPtr; 58 using WTF::PassOwnPtr;
58 using WTF::PassRefPtr; 59 using WTF::PassRefPtr;
59 using WTF::RefPtr; 60 using WTF::RefPtr;
60 using WTF::Vector; 61 using WTF::Vector;
61 62
62 using WTF::ArrayBuffer; 63 using WTF::ArrayBuffer;
63 using WTF::ArrayBufferView; 64 using WTF::ArrayBufferView;
65 using WTF::ArrayPiece;
64 using WTF::AtomicString; 66 using WTF::AtomicString;
65 using WTF::CString; 67 using WTF::CString;
66 using WTF::Float32Array; 68 using WTF::Float32Array;
67 using WTF::Float64Array; 69 using WTF::Float64Array;
68 using WTF::Int8Array; 70 using WTF::Int8Array;
69 using WTF::Int16Array; 71 using WTF::Int16Array;
70 using WTF::Int32Array; 72 using WTF::Int32Array;
71 using WTF::String; 73 using WTF::String;
72 using WTF::StringBuffer; 74 using WTF::StringBuffer;
73 using WTF::StringBuilder; 75 using WTF::StringBuilder;
74 using WTF::StringImpl; 76 using WTF::StringImpl;
75 using WTF::Uint8Array; 77 using WTF::Uint8Array;
76 using WTF::Uint8ClampedArray; 78 using WTF::Uint8ClampedArray;
77 using WTF::Uint16Array; 79 using WTF::Uint16Array;
78 using WTF::Uint32Array; 80 using WTF::Uint32Array;
79 81
80 #endif // WTF_Forward_h 82 #endif // WTF_Forward_h
OLDNEW
« no previous file with comments | « Source/wtf/ArrayPiece.cpp ('k') | Source/wtf/wtf.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698