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 14 matching lines...) Expand all Loading... |
25 | 25 |
26 namespace WTF { | 26 namespace WTF { |
27 template<typename T> class Function; | 27 template<typename T> class Function; |
28 template<typename T> class OwnArrayPtr; | 28 template<typename T> class OwnArrayPtr; |
29 template<typename T> class OwnPtr; | 29 template<typename T> class OwnPtr; |
30 template<typename T> class PassOwnArrayPtr; | 30 template<typename T> class PassOwnArrayPtr; |
31 template<typename T> class PassOwnPtr; | 31 template<typename T> class PassOwnPtr; |
32 template<typename T> class PassRefPtr; | 32 template<typename T> class PassRefPtr; |
33 template<typename T> class RefPtr; | 33 template<typename T> class RefPtr; |
34 template<typename T, size_t inlineCapacity> class Vector; | 34 template<typename T, size_t inlineCapacity> class Vector; |
35 | 35 |
36 class ArrayBuffer; | 36 class ArrayBuffer; |
37 class ArrayBufferView; | 37 class ArrayBufferView; |
38 class AtomicString; | 38 class AtomicString; |
39 class CString; | 39 class CString; |
40 class Float32Array; | 40 class Float32Array; |
41 class Float64Array; | 41 class Float64Array; |
42 class Int8Array; | 42 class Int8Array; |
43 class Int16Array; | 43 class Int16Array; |
44 class Int32Array; | 44 class Int32Array; |
45 class String; | 45 class String; |
(...skipping 27 matching lines...) Expand all Loading... |
73 using WTF::String; | 73 using WTF::String; |
74 using WTF::StringBuffer; | 74 using WTF::StringBuffer; |
75 using WTF::StringBuilder; | 75 using WTF::StringBuilder; |
76 using WTF::StringImpl; | 76 using WTF::StringImpl; |
77 using WTF::Uint8Array; | 77 using WTF::Uint8Array; |
78 using WTF::Uint8ClampedArray; | 78 using WTF::Uint8ClampedArray; |
79 using WTF::Uint16Array; | 79 using WTF::Uint16Array; |
80 using WTF::Uint32Array; | 80 using WTF::Uint32Array; |
81 | 81 |
82 #endif // WTF_Forward_h | 82 #endif // WTF_Forward_h |
OLD | NEW |