Chromium Code Reviews| 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 * Copyright (C) 2014 Opera Software ASA. All rights reserved. | |
| 8 * Copyright (C) 2016 Samsung Electronics. All rights reserved. | |
|
fs
2016/05/18 15:55:06
Haven't seen any of these be added in quite a whil
| |
| 7 * | 9 * |
| 8 * This library is free software; you can redistribute it and/or | 10 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Library General Public | 11 * modify it under the terms of the GNU Library General Public |
| 10 * License as published by the Free Software Foundation; either | 12 * License as published by the Free Software Foundation; either |
| 11 * version 2 of the License, or (at your option) any later version. | 13 * version 2 of the License, or (at your option) any later version. |
| 12 * | 14 * |
| 13 * This library is distributed in the hope that it will be useful, | 15 * This library is distributed in the hope that it will be useful, |
| 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 16 * Library General Public License for more details. | 18 * Library General Public License for more details. |
| (...skipping 14 matching lines...) Expand all Loading... | |
| 31 #include "core/style/BasicShapes.h" | 33 #include "core/style/BasicShapes.h" |
| 32 #include "core/style/CounterDirectives.h" | 34 #include "core/style/CounterDirectives.h" |
| 33 #include "core/style/CursorData.h" | 35 #include "core/style/CursorData.h" |
| 34 #include "core/style/DataRef.h" | 36 #include "core/style/DataRef.h" |
| 35 #include "core/style/FillLayer.h" | 37 #include "core/style/FillLayer.h" |
| 36 #include "core/style/ComputedStyleConstants.h" | 38 #include "core/style/ComputedStyleConstants.h" |
| 37 #include "core/style/LineClampValue.h" | 39 #include "core/style/LineClampValue.h" |
| 38 #include "core/style/NinePieceImage.h" | 40 #include "core/style/NinePieceImage.h" |
| 39 #include "core/style/ShapeValue.h" | 41 #include "core/style/ShapeValue.h" |
| 40 #include "core/style/StyleContentAlignmentData.h" | 42 #include "core/style/StyleContentAlignmentData.h" |
| 43 #include "core/style/StyleNavigationData.h" | |
| 41 #include "core/style/StyleScrollSnapData.h" | 44 #include "core/style/StyleScrollSnapData.h" |
| 42 #include "core/style/StyleSelfAlignmentData.h" | 45 #include "core/style/StyleSelfAlignmentData.h" |
| 43 #include "platform/LengthPoint.h" | 46 #include "platform/LengthPoint.h" |
| 44 #include "wtf/OwnPtr.h" | 47 #include "wtf/OwnPtr.h" |
| 45 #include "wtf/PassRefPtr.h" | 48 #include "wtf/PassRefPtr.h" |
| 46 #include "wtf/Vector.h" | 49 #include "wtf/Vector.h" |
| 47 | 50 |
| 48 namespace blink { | 51 namespace blink { |
| 49 | 52 |
| 50 class ContentData; | 53 class ContentData; |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 114 DataRef<StyleMultiColData> m_multiCol; // CSS3 multicol properties | 117 DataRef<StyleMultiColData> m_multiCol; // CSS3 multicol properties |
| 115 DataRef<StyleTransformData> m_transform; // Transform properties (rotate, sc ale, skew, etc.) | 118 DataRef<StyleTransformData> m_transform; // Transform properties (rotate, sc ale, skew, etc.) |
| 116 DataRef<StyleWillChangeData> m_willChange; // CSS Will Change | 119 DataRef<StyleWillChangeData> m_willChange; // CSS Will Change |
| 117 | 120 |
| 118 DataRef<StyleFilterData> m_filter; // Filter operations (url, sepia, blur, e tc.) | 121 DataRef<StyleFilterData> m_filter; // Filter operations (url, sepia, blur, e tc.) |
| 119 DataRef<StyleFilterData> m_backdropFilter; // Backdrop filter operations (ur l, sepia, blur, etc.) | 122 DataRef<StyleFilterData> m_backdropFilter; // Backdrop filter operations (ur l, sepia, blur, etc.) |
| 120 | 123 |
| 121 DataRef<StyleGridData> m_grid; | 124 DataRef<StyleGridData> m_grid; |
| 122 DataRef<StyleGridItemData> m_gridItem; | 125 DataRef<StyleGridItemData> m_gridItem; |
| 123 DataRef<StyleScrollSnapData> m_scrollSnap; | 126 DataRef<StyleScrollSnapData> m_scrollSnap; |
| 127 DataRef<StyleNavigationData> m_navigation; | |
| 124 | 128 |
| 125 Persistent<ContentData> m_content; | 129 Persistent<ContentData> m_content; |
| 126 OwnPtr<CounterDirectiveMap> m_counterDirectives; | 130 OwnPtr<CounterDirectiveMap> m_counterDirectives; |
| 127 OwnPtr<CSSAnimationData> m_animations; | 131 OwnPtr<CSSAnimationData> m_animations; |
| 128 OwnPtr<CSSTransitionData> m_transitions; | 132 OwnPtr<CSSTransitionData> m_transitions; |
| 129 | 133 |
| 130 RefPtr<ShadowList> m_boxShadow; | 134 RefPtr<ShadowList> m_boxShadow; |
| 131 | 135 |
| 132 RefPtr<StyleReflection> m_boxReflect; | 136 RefPtr<StyleReflection> m_boxReflect; |
| 133 | 137 |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 213 unsigned m_hasAuthorBorder : 1; // Whether there is a author-defined border. | 217 unsigned m_hasAuthorBorder : 1; // Whether there is a author-defined border. |
| 214 | 218 |
| 215 private: | 219 private: |
| 216 StyleRareNonInheritedData(); | 220 StyleRareNonInheritedData(); |
| 217 StyleRareNonInheritedData(const StyleRareNonInheritedData&); | 221 StyleRareNonInheritedData(const StyleRareNonInheritedData&); |
| 218 }; | 222 }; |
| 219 | 223 |
| 220 } // namespace blink | 224 } // namespace blink |
| 221 | 225 |
| 222 #endif // StyleRareNonInheritedData_h | 226 #endif // StyleRareNonInheritedData_h |
| OLD | NEW |