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 18 matching lines...) Expand all Loading... |
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 AtomicStringImpl; | |
40 class CString; | 39 class CString; |
41 class Float32Array; | 40 class Float32Array; |
42 class Float64Array; | 41 class Float64Array; |
43 class Int8Array; | 42 class Int8Array; |
44 class Int16Array; | 43 class Int16Array; |
45 class Int32Array; | 44 class Int32Array; |
46 class MemoryInstrumentation; | 45 class MemoryInstrumentation; |
47 class MemoryObjectInfo; | 46 class MemoryObjectInfo; |
48 class String; | 47 class String; |
49 template <typename T> class StringBuffer; | 48 template <typename T> class StringBuffer; |
(...skipping 10 matching lines...) Expand all Loading... |
60 using WTF::OwnPtr; | 59 using WTF::OwnPtr; |
61 using WTF::PassOwnArrayPtr; | 60 using WTF::PassOwnArrayPtr; |
62 using WTF::PassOwnPtr; | 61 using WTF::PassOwnPtr; |
63 using WTF::PassRefPtr; | 62 using WTF::PassRefPtr; |
64 using WTF::RefPtr; | 63 using WTF::RefPtr; |
65 using WTF::Vector; | 64 using WTF::Vector; |
66 | 65 |
67 using WTF::ArrayBuffer; | 66 using WTF::ArrayBuffer; |
68 using WTF::ArrayBufferView; | 67 using WTF::ArrayBufferView; |
69 using WTF::AtomicString; | 68 using WTF::AtomicString; |
70 using WTF::AtomicStringImpl; | |
71 using WTF::CString; | 69 using WTF::CString; |
72 using WTF::Float32Array; | 70 using WTF::Float32Array; |
73 using WTF::Float64Array; | 71 using WTF::Float64Array; |
74 using WTF::Int8Array; | 72 using WTF::Int8Array; |
75 using WTF::Int16Array; | 73 using WTF::Int16Array; |
76 using WTF::Int32Array; | 74 using WTF::Int32Array; |
77 using WTF::MemoryInstrumentation; | 75 using WTF::MemoryInstrumentation; |
78 using WTF::MemoryObjectInfo; | 76 using WTF::MemoryObjectInfo; |
79 using WTF::String; | 77 using WTF::String; |
80 using WTF::StringBuffer; | 78 using WTF::StringBuffer; |
81 using WTF::StringBuilder; | 79 using WTF::StringBuilder; |
82 using WTF::StringImpl; | 80 using WTF::StringImpl; |
83 using WTF::Uint8Array; | 81 using WTF::Uint8Array; |
84 using WTF::Uint8ClampedArray; | 82 using WTF::Uint8ClampedArray; |
85 using WTF::Uint16Array; | 83 using WTF::Uint16Array; |
86 using WTF::Uint32Array; | 84 using WTF::Uint32Array; |
87 | 85 |
88 #endif // WTF_Forward_h | 86 #endif // WTF_Forward_h |
OLD | NEW |