| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 | 43 |
| 44 namespace blink { | 44 namespace blink { |
| 45 | 45 |
| 46 class ContentData; | 46 class ContentData; |
| 47 class CSSAnimationData; | 47 class CSSAnimationData; |
| 48 class CSSTransitionData; | 48 class CSSTransitionData; |
| 49 class LengthSize; | 49 class LengthSize; |
| 50 class ShadowList; | 50 class ShadowList; |
| 51 class StyleFilterData; | 51 class StyleFilterData; |
| 52 class StyleFlexibleBoxData; | 52 class StyleFlexibleBoxData; |
| 53 class StyleGridData; | |
| 54 class StyleGridItemData; | |
| 55 class StyleTransformData; | 53 class StyleTransformData; |
| 56 class StyleWillChangeData; | 54 class StyleWillChangeData; |
| 57 | 55 |
| 58 // Page size type. | 56 // Page size type. |
| 59 // StyleRareNonInheritedData::m_pageSize is meaningful only when | 57 // StyleRareNonInheritedData::m_pageSize is meaningful only when |
| 60 // StyleRareNonInheritedData::m_pageSizeType is PAGE_SIZE_RESOLVED. | 58 // StyleRareNonInheritedData::m_pageSizeType is PAGE_SIZE_RESOLVED. |
| 61 enum PageSizeType { | 59 enum PageSizeType { |
| 62 PAGE_SIZE_AUTO, // size: auto | 60 PAGE_SIZE_AUTO, // size: auto |
| 63 PAGE_SIZE_AUTO_LANDSCAPE, // size: landscape | 61 PAGE_SIZE_AUTO_LANDSCAPE, // size: landscape |
| 64 PAGE_SIZE_AUTO_PORTRAIT, // size: portrait | 62 PAGE_SIZE_AUTO_PORTRAIT, // size: portrait |
| (...skipping 30 matching lines...) Expand all Loading... |
| 95 Length m_perspectiveOriginY; | 93 Length m_perspectiveOriginY; |
| 96 | 94 |
| 97 LineClampValue lineClamp; // An Apple extension. | 95 LineClampValue lineClamp; // An Apple extension. |
| 98 | 96 |
| 99 DataRef<StyleFlexibleBoxData> m_flexibleBox; | 97 DataRef<StyleFlexibleBoxData> m_flexibleBox; |
| 100 DataRef<StyleTransformData> m_transform; // Transform properties (rotate, sc
ale, skew, etc.) | 98 DataRef<StyleTransformData> m_transform; // Transform properties (rotate, sc
ale, skew, etc.) |
| 101 DataRef<StyleWillChangeData> m_willChange; // CSS Will Change | 99 DataRef<StyleWillChangeData> m_willChange; // CSS Will Change |
| 102 | 100 |
| 103 DataRef<StyleFilterData> m_filter; // Filter operations (url, sepia, blur, e
tc.) | 101 DataRef<StyleFilterData> m_filter; // Filter operations (url, sepia, blur, e
tc.) |
| 104 | 102 |
| 105 DataRef<StyleGridData> m_grid; | |
| 106 DataRef<StyleGridItemData> m_gridItem; | |
| 107 | |
| 108 OwnPtr<ContentData> m_content; | 103 OwnPtr<ContentData> m_content; |
| 109 OwnPtr<CounterDirectiveMap> m_counterDirectives; | 104 OwnPtr<CounterDirectiveMap> m_counterDirectives; |
| 110 | 105 |
| 111 RefPtr<ShadowList> m_boxShadow; | 106 RefPtr<ShadowList> m_boxShadow; |
| 112 | 107 |
| 113 OwnPtr<CSSAnimationData> m_animations; | 108 OwnPtr<CSSAnimationData> m_animations; |
| 114 OwnPtr<CSSTransitionData> m_transitions; | 109 OwnPtr<CSSTransitionData> m_transitions; |
| 115 | 110 |
| 116 FillLayer m_mask; | 111 FillLayer m_mask; |
| 117 NinePieceImage m_maskBoxImage; | 112 NinePieceImage m_maskBoxImage; |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 unsigned m_hasInlineTransform : 1; | 183 unsigned m_hasInlineTransform : 1; |
| 189 | 184 |
| 190 private: | 185 private: |
| 191 StyleRareNonInheritedData(); | 186 StyleRareNonInheritedData(); |
| 192 StyleRareNonInheritedData(const StyleRareNonInheritedData&); | 187 StyleRareNonInheritedData(const StyleRareNonInheritedData&); |
| 193 }; | 188 }; |
| 194 | 189 |
| 195 } // namespace blink | 190 } // namespace blink |
| 196 | 191 |
| 197 #endif // StyleRareNonInheritedData_h | 192 #endif // StyleRareNonInheritedData_h |
| OLD | NEW |