Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / Source / wtf / Forward.h
blob8fe791b6b0e5c5e57d62505d0c85c393c24e1ece
1 /*
2 * Copyright (C) 2006, 2009, 2011 Apple Inc. All rights reserved.
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.
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.
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.
21 #ifndef WTF_Forward_h
22 #define WTF_Forward_h
24 #include <stddef.h>
26 namespace WTF {
27 template<typename T> class Function;
28 template<typename T> class OwnPtr;
29 template<typename T> class PassOwnPtr;
30 template<typename T> class PassRefPtr;
31 template<typename T> class RefPtr;
32 template<typename T, size_t inlineCapacity, typename Allocator> class Vector;
33 template<typename T> class WeakPtr;
35 class ArrayBuffer;
36 class ArrayBufferView;
37 class ArrayPiece;
38 class AtomicString;
39 class CString;
40 class Float32Array;
41 class Float64Array;
42 class Int8Array;
43 class Int16Array;
44 class Int32Array;
45 template<size_t size>
46 class SizeSpecificPartitionAllocator;
47 class String;
48 template <typename T> class StringBuffer;
49 class StringBuilder;
50 class StringImpl;
51 class Uint8Array;
52 class Uint8ClampedArray;
53 class Uint16Array;
54 class Uint32Array;
57 using WTF::Function;
58 using WTF::OwnPtr;
59 using WTF::PassOwnPtr;
60 using WTF::PassRefPtr;
61 using WTF::RefPtr;
62 using WTF::Vector;
63 using WTF::WeakPtr;
65 using WTF::ArrayBuffer;
66 using WTF::ArrayBufferView;
67 using WTF::ArrayPiece;
68 using WTF::AtomicString;
69 using WTF::CString;
70 using WTF::Float32Array;
71 using WTF::Float64Array;
72 using WTF::Int8Array;
73 using WTF::Int16Array;
74 using WTF::Int32Array;
75 using WTF::String;
76 using WTF::StringBuffer;
77 using WTF::StringBuilder;
78 using WTF::StringImpl;
79 using WTF::Uint8Array;
80 using WTF::Uint8ClampedArray;
81 using WTF::Uint16Array;
82 using WTF::Uint32Array;
84 #endif // WTF_Forward_h