| 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 12 matching lines...) Expand all Loading... |
| 23 | 23 |
| 24 #include "wtf/Compiler.h" | 24 #include "wtf/Compiler.h" |
| 25 #include <stddef.h> | 25 #include <stddef.h> |
| 26 | 26 |
| 27 namespace WTF { | 27 namespace WTF { |
| 28 | 28 |
| 29 template <typename T> | 29 template <typename T> |
| 30 class PassRefPtr; | 30 class PassRefPtr; |
| 31 template <typename T> | 31 template <typename T> |
| 32 class RefPtr; | 32 class RefPtr; |
| 33 template <size_t size> | |
| 34 class SizeSpecificPartitionAllocator; | |
| 35 template <typename T> | 33 template <typename T> |
| 36 class StringBuffer; | 34 class StringBuffer; |
| 37 template <typename T, size_t inlineCapacity, typename Allocator> | 35 template <typename T, size_t inlineCapacity, typename Allocator> |
| 38 class Vector; | 36 class Vector; |
| 39 | 37 |
| 40 class ArrayBuffer; | 38 class ArrayBuffer; |
| 41 class ArrayBufferView; | 39 class ArrayBufferView; |
| 42 class ArrayPiece; | 40 class ArrayPiece; |
| 43 class AtomicString; | 41 class AtomicString; |
| 44 class CString; | 42 class CString; |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 using WTF::StringBuffer; | 74 using WTF::StringBuffer; |
| 77 using WTF::StringBuilder; | 75 using WTF::StringBuilder; |
| 78 using WTF::StringImpl; | 76 using WTF::StringImpl; |
| 79 using WTF::StringView; | 77 using WTF::StringView; |
| 80 using WTF::Uint8Array; | 78 using WTF::Uint8Array; |
| 81 using WTF::Uint8ClampedArray; | 79 using WTF::Uint8ClampedArray; |
| 82 using WTF::Uint16Array; | 80 using WTF::Uint16Array; |
| 83 using WTF::Uint32Array; | 81 using WTF::Uint32Array; |
| 84 | 82 |
| 85 #endif // WTF_Forward_h | 83 #endif // WTF_Forward_h |
| OLD | NEW |