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

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

Issue 1611343002: wtf reformat test Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: pydent Created 4 years, 11 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 /* 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
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details. 12 * Library General Public License for more details.
13 * 13 *
14 * You should have received a copy of the GNU Library General Public License 14 * You should have received a copy of the GNU Library General Public License
15 * along with this library; see the file COPYING.LIB. If not, write to 15 * along with this library; see the file COPYING.LIB. If not, write to
16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 * Boston, MA 02110-1301, USA. 17 * Boston, MA 02110-1301, USA.
18 * 18 *
19 */ 19 */
20 20
21 #ifndef WTF_Forward_h 21 #ifndef WTF_Forward_h
22 #define WTF_Forward_h 22 #define WTF_Forward_h
23 23
24 #include <stddef.h> 24 #include <stddef.h>
25 25
26 namespace WTF { 26 namespace WTF {
27 27
28 template <typename T> class Function; 28 template <typename T>
29 template <typename T> class OwnPtr; 29 class Function;
30 template <typename T> class PassOwnPtr; 30 template <typename T>
31 template <typename T> class PassRefPtr; 31 class OwnPtr;
32 template <typename T> class RefPtr; 32 template <typename T>
33 template <size_t size> class SizeSpecificPartitionAllocator; 33 class PassOwnPtr;
34 template <typename T> class StringBuffer; 34 template <typename T>
35 template <typename T, size_t inlineCapacity, typename Allocator> class Vector; 35 class PassRefPtr;
36 template <typename T> class WeakPtr; 36 template <typename T>
37 class RefPtr;
38 template <size_t size>
39 class SizeSpecificPartitionAllocator;
40 template <typename T>
41 class StringBuffer;
42 template <typename T, size_t inlineCapacity, typename Allocator>
43 class Vector;
44 template <typename T>
45 class WeakPtr;
37 46
38 class ArrayBuffer; 47 class ArrayBuffer;
39 class ArrayBufferView; 48 class ArrayBufferView;
40 class ArrayPiece; 49 class ArrayPiece;
41 class AtomicString; 50 class AtomicString;
42 class CString; 51 class CString;
43 class Float32Array; 52 class Float32Array;
44 class Float64Array; 53 class Float64Array;
45 class Int8Array; 54 class Int8Array;
46 class Int16Array; 55 class Int16Array;
47 class Int32Array; 56 class Int32Array;
48 class String; 57 class String;
49 class StringBuilder; 58 class StringBuilder;
50 class StringImpl; 59 class StringImpl;
51 class Uint8Array; 60 class Uint8Array;
52 class Uint8ClampedArray; 61 class Uint8ClampedArray;
53 class Uint16Array; 62 class Uint16Array;
54 class Uint32Array; 63 class Uint32Array;
55
56 } 64 }
57 65
58 using WTF::Function; 66 using WTF::Function;
59 using WTF::OwnPtr; 67 using WTF::OwnPtr;
60 using WTF::PassOwnPtr; 68 using WTF::PassOwnPtr;
61 using WTF::PassRefPtr; 69 using WTF::PassRefPtr;
62 using WTF::RefPtr; 70 using WTF::RefPtr;
63 using WTF::Vector; 71 using WTF::Vector;
64 using WTF::WeakPtr; 72 using WTF::WeakPtr;
65 73
66 using WTF::ArrayBuffer; 74 using WTF::ArrayBuffer;
67 using WTF::ArrayBufferView; 75 using WTF::ArrayBufferView;
68 using WTF::ArrayPiece; 76 using WTF::ArrayPiece;
69 using WTF::AtomicString; 77 using WTF::AtomicString;
70 using WTF::CString; 78 using WTF::CString;
71 using WTF::Float32Array; 79 using WTF::Float32Array;
72 using WTF::Float64Array; 80 using WTF::Float64Array;
73 using WTF::Int8Array; 81 using WTF::Int8Array;
74 using WTF::Int16Array; 82 using WTF::Int16Array;
75 using WTF::Int32Array; 83 using WTF::Int32Array;
76 using WTF::String; 84 using WTF::String;
77 using WTF::StringBuffer; 85 using WTF::StringBuffer;
78 using WTF::StringBuilder; 86 using WTF::StringBuilder;
79 using WTF::StringImpl; 87 using WTF::StringImpl;
80 using WTF::Uint8Array; 88 using WTF::Uint8Array;
81 using WTF::Uint8ClampedArray; 89 using WTF::Uint8ClampedArray;
82 using WTF::Uint16Array; 90 using WTF::Uint16Array;
83 using WTF::Uint32Array; 91 using WTF::Uint32Array;
84 92
85 #endif // WTF_Forward_h 93 #endif // WTF_Forward_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/wtf/Float64Array.h ('k') | third_party/WebKit/Source/wtf/Functional.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698