| 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 22 matching lines...) Expand all Loading... |
| 33 #include "core/rendering/style/ExclusionShapeValue.h" | 33 #include "core/rendering/style/ExclusionShapeValue.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 <wtf/OwnPtr.h> | 37 #include <wtf/OwnPtr.h> |
| 38 #include <wtf/PassRefPtr.h> | 38 #include <wtf/PassRefPtr.h> |
| 39 #include <wtf/Vector.h> | 39 #include <wtf/Vector.h> |
| 40 | 40 |
| 41 namespace WebCore { | 41 namespace WebCore { |
| 42 | 42 |
| 43 class CSSAnimationDataList; | 43 class StyleAnimationDataList; |
| 44 class ShadowData; | 44 class ShadowData; |
| 45 class StyleDeprecatedFlexibleBoxData; | 45 class StyleDeprecatedFlexibleBoxData; |
| 46 class StyleFilterData; | 46 class StyleFilterData; |
| 47 class StyleFlexibleBoxData; | 47 class StyleFlexibleBoxData; |
| 48 class StyleGridData; | 48 class StyleGridData; |
| 49 class StyleGridItemData; | 49 class StyleGridItemData; |
| 50 class StyleMarqueeData; | 50 class StyleMarqueeData; |
| 51 class StyleMultiColData; | 51 class StyleMultiColData; |
| 52 class StyleReflection; | 52 class StyleReflection; |
| 53 class StyleResolver; | 53 class StyleResolver; |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 DataRef<StyleGridData> m_grid; | 110 DataRef<StyleGridData> m_grid; |
| 111 DataRef<StyleGridItemData> m_gridItem; | 111 DataRef<StyleGridItemData> m_gridItem; |
| 112 | 112 |
| 113 OwnPtr<ContentData> m_content; | 113 OwnPtr<ContentData> m_content; |
| 114 OwnPtr<CounterDirectiveMap> m_counterDirectives; | 114 OwnPtr<CounterDirectiveMap> m_counterDirectives; |
| 115 | 115 |
| 116 OwnPtr<ShadowData> m_boxShadow; // For box-shadow decorations. | 116 OwnPtr<ShadowData> m_boxShadow; // For box-shadow decorations. |
| 117 | 117 |
| 118 RefPtr<StyleReflection> m_boxReflect; | 118 RefPtr<StyleReflection> m_boxReflect; |
| 119 | 119 |
| 120 OwnPtr<CSSAnimationDataList> m_animations; | 120 OwnPtr<StyleAnimationDataList> m_animations; |
| 121 OwnPtr<CSSAnimationDataList> m_transitions; | 121 OwnPtr<StyleAnimationDataList> m_transitions; |
| 122 | 122 |
| 123 FillLayer m_mask; | 123 FillLayer m_mask; |
| 124 NinePieceImage m_maskBoxImage; | 124 NinePieceImage m_maskBoxImage; |
| 125 | 125 |
| 126 LengthSize m_pageSize; | 126 LengthSize m_pageSize; |
| 127 | 127 |
| 128 RefPtr<ExclusionShapeValue> m_shapeInside; | 128 RefPtr<ExclusionShapeValue> m_shapeInside; |
| 129 RefPtr<ExclusionShapeValue> m_shapeOutside; | 129 RefPtr<ExclusionShapeValue> m_shapeOutside; |
| 130 Length m_shapeMargin; | 130 Length m_shapeMargin; |
| 131 Length m_shapePadding; | 131 Length m_shapePadding; |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 #endif | 185 #endif |
| 186 | 186 |
| 187 private: | 187 private: |
| 188 StyleRareNonInheritedData(); | 188 StyleRareNonInheritedData(); |
| 189 StyleRareNonInheritedData(const StyleRareNonInheritedData&); | 189 StyleRareNonInheritedData(const StyleRareNonInheritedData&); |
| 190 }; | 190 }; |
| 191 | 191 |
| 192 } // namespace WebCore | 192 } // namespace WebCore |
| 193 | 193 |
| 194 #endif // StyleRareNonInheritedData_h | 194 #endif // StyleRareNonInheritedData_h |
| OLD | NEW |