OLD | NEW |
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 28 matching lines...) Expand all Loading... |
39 class AtomicString; | 39 class AtomicString; |
40 class AtomicStringImpl; | 40 class AtomicStringImpl; |
41 class CString; | 41 class CString; |
42 class Decoder; | 42 class Decoder; |
43 class Encoder; | 43 class Encoder; |
44 class Float32Array; | 44 class Float32Array; |
45 class Float64Array; | 45 class Float64Array; |
46 class Int8Array; | 46 class Int8Array; |
47 class Int16Array; | 47 class Int16Array; |
48 class Int32Array; | 48 class Int32Array; |
49 class MemoryInstrumentation; | |
50 class MemoryObjectInfo; | |
51 class String; | 49 class String; |
52 template <typename T> class StringBuffer; | 50 template <typename T> class StringBuffer; |
53 class StringBuilder; | 51 class StringBuilder; |
54 class StringImpl; | 52 class StringImpl; |
55 class Uint8Array; | 53 class Uint8Array; |
56 class Uint8ClampedArray; | 54 class Uint8ClampedArray; |
57 class Uint16Array; | 55 class Uint16Array; |
58 class Uint32Array; | 56 class Uint32Array; |
59 } | 57 } |
60 | 58 |
(...skipping 12 matching lines...) Expand all Loading... |
73 using WTF::AtomicString; | 71 using WTF::AtomicString; |
74 using WTF::AtomicStringImpl; | 72 using WTF::AtomicStringImpl; |
75 using WTF::CString; | 73 using WTF::CString; |
76 using WTF::Encoder; | 74 using WTF::Encoder; |
77 using WTF::Decoder; | 75 using WTF::Decoder; |
78 using WTF::Float32Array; | 76 using WTF::Float32Array; |
79 using WTF::Float64Array; | 77 using WTF::Float64Array; |
80 using WTF::Int8Array; | 78 using WTF::Int8Array; |
81 using WTF::Int16Array; | 79 using WTF::Int16Array; |
82 using WTF::Int32Array; | 80 using WTF::Int32Array; |
83 using WTF::MemoryInstrumentation; | |
84 using WTF::MemoryObjectInfo; | |
85 using WTF::String; | 81 using WTF::String; |
86 using WTF::StringBuffer; | 82 using WTF::StringBuffer; |
87 using WTF::StringBuilder; | 83 using WTF::StringBuilder; |
88 using WTF::StringImpl; | 84 using WTF::StringImpl; |
89 using WTF::Uint8Array; | 85 using WTF::Uint8Array; |
90 using WTF::Uint8ClampedArray; | 86 using WTF::Uint8ClampedArray; |
91 using WTF::Uint16Array; | 87 using WTF::Uint16Array; |
92 using WTF::Uint32Array; | 88 using WTF::Uint32Array; |
93 | 89 |
94 #endif // WTF_Forward_h | 90 #endif // WTF_Forward_h |
OLD | NEW |