OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2007 Alp Toker <alp@atoker.com> | 2 * Copyright (C) 2007 Alp Toker <alp@atoker.com> |
3 * Copyright (C) 2007 Apple Inc. | 3 * Copyright (C) 2007 Apple Inc. |
4 * | 4 * |
5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
9 * | 9 * |
10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
13 * Library General Public License for more details. | 13 * Library General Public License for more details. |
14 * | 14 * |
15 * You should have received a copy of the GNU Library General Public License | 15 * You should have received a copy of the GNU Library General Public License |
16 * along with this library; see the file COPYING.LIB. If not, write to | 16 * along with this library; see the file COPYING.LIB. If not, write to |
17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
18 * Boston, MA 02110-1301, USA. | 18 * Boston, MA 02110-1301, USA. |
19 */ | 19 */ |
20 | 20 |
21 #ifndef PrintContext_h | 21 #ifndef PrintContext_h |
22 #define PrintContext_h | 22 #define PrintContext_h |
23 | 23 |
24 #include "core/CoreExport.h" | 24 #include "core/CoreExport.h" |
25 #include "platform/heap/Handle.h" | 25 #include "platform/heap/Handle.h" |
26 #include "wtf/Forward.h" | 26 #include "platform/wtf/Forward.h" |
27 #include "wtf/HashMap.h" | 27 #include "platform/wtf/HashMap.h" |
28 #include "wtf/Vector.h" | 28 #include "platform/wtf/Vector.h" |
29 #include "wtf/text/WTFString.h" | 29 #include "platform/wtf/text/WTFString.h" |
30 | 30 |
31 namespace blink { | 31 namespace blink { |
32 | 32 |
33 class Element; | 33 class Element; |
34 class LocalFrame; | 34 class LocalFrame; |
35 class FloatRect; | 35 class FloatRect; |
36 class FloatSize; | 36 class FloatSize; |
37 class GraphicsContext; | 37 class GraphicsContext; |
38 class IntRect; | 38 class IntRect; |
39 class Node; | 39 class Node; |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 // begin). | 116 // begin). |
117 bool is_printing_; | 117 bool is_printing_; |
118 | 118 |
119 HeapHashMap<String, Member<Element>> linked_destinations_; | 119 HeapHashMap<String, Member<Element>> linked_destinations_; |
120 bool linked_destinations_valid_; | 120 bool linked_destinations_valid_; |
121 }; | 121 }; |
122 | 122 |
123 } // namespace blink | 123 } // namespace blink |
124 | 124 |
125 #endif | 125 #endif |
OLD | NEW |