Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(86)

Side by Side Diff: Source/wtf/Forward.h

Issue 966243002: Reduce platform/heap/ wtf includes. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/platform/heap/Visitor.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
23 23
24 #include <stddef.h> 24 #include <stddef.h>
25 25
26 namespace WTF { 26 namespace WTF {
27 template<typename T> class Function; 27 template<typename T> class Function;
28 template<typename T> class OwnPtr; 28 template<typename T> class OwnPtr;
29 template<typename T> class PassOwnPtr; 29 template<typename T> class PassOwnPtr;
30 template<typename T> class PassRefPtr; 30 template<typename T> class PassRefPtr;
31 template<typename T> class RefPtr; 31 template<typename T> class RefPtr;
32 template<typename T, size_t inlineCapacity, typename Allocator> class Vector ; 32 template<typename T, size_t inlineCapacity, typename Allocator> class Vector ;
33 template<typename T> class WeakPtr;
33 34
34 class ArrayBuffer; 35 class ArrayBuffer;
35 class ArrayBufferView; 36 class ArrayBufferView;
36 class ArrayPiece; 37 class ArrayPiece;
37 class AtomicString; 38 class AtomicString;
38 class CString; 39 class CString;
39 class Float32Array; 40 class Float32Array;
40 class Float64Array; 41 class Float64Array;
41 class Int8Array; 42 class Int8Array;
42 class Int16Array; 43 class Int16Array;
43 class Int32Array; 44 class Int32Array;
44 template<size_t size> 45 template<size_t size>
45 class SizeSpecificPartitionAllocator; 46 class SizeSpecificPartitionAllocator;
46 class String; 47 class String;
47 template <typename T> class StringBuffer; 48 template <typename T> class StringBuffer;
48 class StringBuilder; 49 class StringBuilder;
49 class StringImpl; 50 class StringImpl;
50 class Uint8Array; 51 class Uint8Array;
51 class Uint8ClampedArray; 52 class Uint8ClampedArray;
52 class Uint16Array; 53 class Uint16Array;
53 class Uint32Array; 54 class Uint32Array;
54 } 55 }
55 56
56 using WTF::Function; 57 using WTF::Function;
57 using WTF::OwnPtr; 58 using WTF::OwnPtr;
58 using WTF::PassOwnPtr; 59 using WTF::PassOwnPtr;
59 using WTF::PassRefPtr; 60 using WTF::PassRefPtr;
60 using WTF::RefPtr; 61 using WTF::RefPtr;
61 using WTF::Vector; 62 using WTF::Vector;
63 using WTF::WeakPtr;
62 64
63 using WTF::ArrayBuffer; 65 using WTF::ArrayBuffer;
64 using WTF::ArrayBufferView; 66 using WTF::ArrayBufferView;
65 using WTF::ArrayPiece; 67 using WTF::ArrayPiece;
66 using WTF::AtomicString; 68 using WTF::AtomicString;
67 using WTF::CString; 69 using WTF::CString;
68 using WTF::Float32Array; 70 using WTF::Float32Array;
69 using WTF::Float64Array; 71 using WTF::Float64Array;
70 using WTF::Int8Array; 72 using WTF::Int8Array;
71 using WTF::Int16Array; 73 using WTF::Int16Array;
72 using WTF::Int32Array; 74 using WTF::Int32Array;
73 using WTF::String; 75 using WTF::String;
74 using WTF::StringBuffer; 76 using WTF::StringBuffer;
75 using WTF::StringBuilder; 77 using WTF::StringBuilder;
76 using WTF::StringImpl; 78 using WTF::StringImpl;
77 using WTF::Uint8Array; 79 using WTF::Uint8Array;
78 using WTF::Uint8ClampedArray; 80 using WTF::Uint8ClampedArray;
79 using WTF::Uint16Array; 81 using WTF::Uint16Array;
80 using WTF::Uint32Array; 82 using WTF::Uint32Array;
81 83
82 #endif // WTF_Forward_h 84 #endif // WTF_Forward_h
OLDNEW
« no previous file with comments | « Source/platform/heap/Visitor.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698