OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) |
3 * (C) 2000 Antti Koivisto (koivisto@kde.org) | 3 * (C) 2000 Antti Koivisto (koivisto@kde.org) |
4 * (C) 2000 Dirk Mueller (mueller@kde.org) | 4 * (C) 2000 Dirk Mueller (mueller@kde.org) |
5 * Copyright (C) 2003, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. | 5 * Copyright (C) 2003, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. |
6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com) | 6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com) |
7 * | 7 * |
8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
(...skipping 17 matching lines...) Expand all Loading... | |
28 #include "core/css/StyleColor.h" | 28 #include "core/css/StyleColor.h" |
29 #include "core/rendering/ClipPathOperation.h" | 29 #include "core/rendering/ClipPathOperation.h" |
30 #include "core/rendering/style/BasicShapes.h" | 30 #include "core/rendering/style/BasicShapes.h" |
31 #include "core/rendering/style/CounterDirectives.h" | 31 #include "core/rendering/style/CounterDirectives.h" |
32 #include "core/rendering/style/CursorData.h" | 32 #include "core/rendering/style/CursorData.h" |
33 #include "core/rendering/style/DataRef.h" | 33 #include "core/rendering/style/DataRef.h" |
34 #include "core/rendering/style/FillLayer.h" | 34 #include "core/rendering/style/FillLayer.h" |
35 #include "core/rendering/style/LineClampValue.h" | 35 #include "core/rendering/style/LineClampValue.h" |
36 #include "core/rendering/style/NinePieceImage.h" | 36 #include "core/rendering/style/NinePieceImage.h" |
37 #include "core/rendering/style/ShapeValue.h" | 37 #include "core/rendering/style/ShapeValue.h" |
38 #include "core/rendering/style/StyleNavigationData.h" | |
38 #include "wtf/OwnPtr.h" | 39 #include "wtf/OwnPtr.h" |
39 #include "wtf/PassRefPtr.h" | 40 #include "wtf/PassRefPtr.h" |
40 #include "wtf/Vector.h" | 41 #include "wtf/Vector.h" |
41 | 42 |
42 namespace WebCore { | 43 namespace WebCore { |
43 | 44 |
44 class CSSAnimationDataList; | 45 class CSSAnimationDataList; |
45 class ShadowData; | 46 class ShadowData; |
46 class StyleDeprecatedFlexibleBoxData; | 47 class StyleDeprecatedFlexibleBoxData; |
47 class StyleFilterData; | 48 class StyleFilterData; |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
115 OwnPtr<ShadowData> m_boxShadow; // For box-shadow decorations. | 116 OwnPtr<ShadowData> m_boxShadow; // For box-shadow decorations. |
116 | 117 |
117 RefPtr<StyleReflection> m_boxReflect; | 118 RefPtr<StyleReflection> m_boxReflect; |
118 | 119 |
119 OwnPtr<CSSAnimationDataList> m_animations; | 120 OwnPtr<CSSAnimationDataList> m_animations; |
120 OwnPtr<CSSAnimationDataList> m_transitions; | 121 OwnPtr<CSSAnimationDataList> m_transitions; |
121 | 122 |
122 FillLayer m_mask; | 123 FillLayer m_mask; |
123 NinePieceImage m_maskBoxImage; | 124 NinePieceImage m_maskBoxImage; |
124 | 125 |
126 StyleNavigationData m_navigation; | |
esprehn
2013/08/08 03:39:40
This adds 8 ptrs to this thing, I think you want O
Krzysztof Olczyk
2013/12/04 13:56:50
Done.
| |
127 | |
125 LengthSize m_pageSize; | 128 LengthSize m_pageSize; |
126 | 129 |
127 RefPtr<ShapeValue> m_shapeInside; | 130 RefPtr<ShapeValue> m_shapeInside; |
128 RefPtr<ShapeValue> m_shapeOutside; | 131 RefPtr<ShapeValue> m_shapeOutside; |
129 Length m_shapeMargin; | 132 Length m_shapeMargin; |
130 Length m_shapePadding; | 133 Length m_shapePadding; |
131 | 134 |
132 RefPtr<ClipPathOperation> m_clipPath; | 135 RefPtr<ClipPathOperation> m_clipPath; |
133 | 136 |
134 StyleColor m_textDecorationColor; | 137 StyleColor m_textDecorationColor; |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
180 unsigned m_touchAction : 1; // TouchAction | 183 unsigned m_touchAction : 1; // TouchAction |
181 | 184 |
182 private: | 185 private: |
183 StyleRareNonInheritedData(); | 186 StyleRareNonInheritedData(); |
184 StyleRareNonInheritedData(const StyleRareNonInheritedData&); | 187 StyleRareNonInheritedData(const StyleRareNonInheritedData&); |
185 }; | 188 }; |
186 | 189 |
187 } // namespace WebCore | 190 } // namespace WebCore |
188 | 191 |
189 #endif // StyleRareNonInheritedData_h | 192 #endif // StyleRareNonInheritedData_h |
OLD | NEW |