| OLD | NEW |
| (Empty) |
| 1 /* | |
| 2 * Copyright (C) 2006, 2009, 2011 Apple Inc. All rights reserved. | |
| 3 * | |
| 4 * This library is free software; you can redistribute it and/or | |
| 5 * modify it under the terms of the GNU Library General Public | |
| 6 * License as published by the Free Software Foundation; either | |
| 7 * version 2 of the License, or (at your option) any later version. | |
| 8 * | |
| 9 * This library is distributed in the hope that it will be useful, | |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
| 12 * Library General Public License for more details. | |
| 13 * | |
| 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 | |
| 16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |
| 17 * Boston, MA 02110-1301, USA. | |
| 18 * | |
| 19 */ | |
| 20 | |
| 21 #ifndef WTF_Forward_h | |
| 22 #define WTF_Forward_h | |
| 23 | |
| 24 #include <stddef.h> | |
| 25 | |
| 26 namespace WTF { | |
| 27 template<typename T> class Function; | |
| 28 template<typename T> class ListRefPtr; | |
| 29 template<typename T> class OwnArrayPtr; | |
| 30 template<typename T> class OwnPtr; | |
| 31 template<typename T> class PassOwnArrayPtr; | |
| 32 template<typename T> class PassOwnPtr; | |
| 33 template<typename T> class PassRefPtr; | |
| 34 template<typename T> class RefPtr; | |
| 35 template<typename T, size_t inlineCapacity> class Vector; | |
| 36 | |
| 37 class ArrayBuffer; | |
| 38 class ArrayBufferView; | |
| 39 class AtomicString; | |
| 40 class AtomicStringImpl; | |
| 41 class CString; | |
| 42 class Decoder; | |
| 43 class Encoder; | |
| 44 class Float32Array; | |
| 45 class Float64Array; | |
| 46 class Int8Array; | |
| 47 class Int16Array; | |
| 48 class Int32Array; | |
| 49 class MemoryInstrumentation; | |
| 50 class MemoryObjectInfo; | |
| 51 class String; | |
| 52 template <typename T> class StringBuffer; | |
| 53 class StringBuilder; | |
| 54 class StringImpl; | |
| 55 class Uint8Array; | |
| 56 class Uint8ClampedArray; | |
| 57 class Uint16Array; | |
| 58 class Uint32Array; | |
| 59 } | |
| 60 | |
| 61 using WTF::Function; | |
| 62 using WTF::ListRefPtr; | |
| 63 using WTF::OwnArrayPtr; | |
| 64 using WTF::OwnPtr; | |
| 65 using WTF::PassOwnArrayPtr; | |
| 66 using WTF::PassOwnPtr; | |
| 67 using WTF::PassRefPtr; | |
| 68 using WTF::RefPtr; | |
| 69 using WTF::Vector; | |
| 70 | |
| 71 using WTF::ArrayBuffer; | |
| 72 using WTF::ArrayBufferView; | |
| 73 using WTF::AtomicString; | |
| 74 using WTF::AtomicStringImpl; | |
| 75 using WTF::CString; | |
| 76 using WTF::Encoder; | |
| 77 using WTF::Decoder; | |
| 78 using WTF::Float32Array; | |
| 79 using WTF::Float64Array; | |
| 80 using WTF::Int8Array; | |
| 81 using WTF::Int16Array; | |
| 82 using WTF::Int32Array; | |
| 83 using WTF::MemoryInstrumentation; | |
| 84 using WTF::MemoryObjectInfo; | |
| 85 using WTF::String; | |
| 86 using WTF::StringBuffer; | |
| 87 using WTF::StringBuilder; | |
| 88 using WTF::StringImpl; | |
| 89 using WTF::Uint8Array; | |
| 90 using WTF::Uint8ClampedArray; | |
| 91 using WTF::Uint16Array; | |
| 92 using WTF::Uint32Array; | |
| 93 | |
| 94 #endif // WTF_Forward_h | |
| OLD | NEW |