OLD | NEW |
1 /* | 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
2 * Copyright (C) 2006, 2009, 2011 Apple Inc. All rights reserved. | 2 // Use of this source code is governed by a BSD-style license that can be |
3 * | 3 // found in the LICENSE file. |
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 | 4 |
21 #ifndef WTF_Forward_h | 5 #include "platform/wtf/Forward.h" |
22 #define WTF_Forward_h | |
23 | 6 |
24 #include "wtf/Compiler.h" | 7 // The contents of this header was moved to platform/wtf as part of |
25 #include <stddef.h> | 8 // WTF migration project. See the following post for details: |
26 | 9 // https://groups.google.com/a/chromium.org/d/msg/blink-dev/tLdAZCTlcAA/bYXVT8gY
CAAJ |
27 namespace WTF { | |
28 | |
29 template <typename T> | |
30 class PassRefPtr; | |
31 template <typename T> | |
32 class RefPtr; | |
33 template <typename T> | |
34 class StringBuffer; | |
35 template <typename T, size_t inlineCapacity, typename Allocator> | |
36 class Vector; | |
37 | |
38 class ArrayBuffer; | |
39 class ArrayBufferView; | |
40 class ArrayPiece; | |
41 class AtomicString; | |
42 class CString; | |
43 class Float32Array; | |
44 class Float64Array; | |
45 class Int8Array; | |
46 class Int16Array; | |
47 class Int32Array; | |
48 class OrdinalNumber; | |
49 class String; | |
50 class StringBuilder; | |
51 class StringImpl; | |
52 class StringView; | |
53 class Uint8Array; | |
54 class Uint8ClampedArray; | |
55 class Uint16Array; | |
56 class Uint32Array; | |
57 | |
58 } // namespace WTF | |
59 | |
60 using WTF::PassRefPtr; | |
61 using WTF::RefPtr; | |
62 using WTF::Vector; | |
63 | |
64 using WTF::ArrayBuffer; | |
65 using WTF::ArrayBufferView; | |
66 using WTF::ArrayPiece; | |
67 using WTF::AtomicString; | |
68 using WTF::CString; | |
69 using WTF::Float32Array; | |
70 using WTF::Float64Array; | |
71 using WTF::Int8Array; | |
72 using WTF::Int16Array; | |
73 using WTF::Int32Array; | |
74 using WTF::String; | |
75 using WTF::StringBuffer; | |
76 using WTF::StringBuilder; | |
77 using WTF::StringImpl; | |
78 using WTF::StringView; | |
79 using WTF::Uint8Array; | |
80 using WTF::Uint8ClampedArray; | |
81 using WTF::Uint16Array; | |
82 using WTF::Uint32Array; | |
83 | |
84 #endif // WTF_Forward_h | |
OLD | NEW |