Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Side by Side Diff: third_party/WebKit/Source/core/style/StyleRareNonInheritedData.h

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 DataRef<StyleTransformData> m_transform; // Transform properties (rotate, sc ale, skew, etc.) 115 DataRef<StyleTransformData> m_transform; // Transform properties (rotate, sc ale, skew, etc.)
116 DataRef<StyleWillChangeData> m_willChange; // CSS Will Change 116 DataRef<StyleWillChangeData> m_willChange; // CSS Will Change
117 117
118 DataRef<StyleFilterData> m_filter; // Filter operations (url, sepia, blur, e tc.) 118 DataRef<StyleFilterData> m_filter; // Filter operations (url, sepia, blur, e tc.)
119 DataRef<StyleFilterData> m_backdropFilter; // Backdrop filter operations (ur l, sepia, blur, etc.) 119 DataRef<StyleFilterData> m_backdropFilter; // Backdrop filter operations (ur l, sepia, blur, etc.)
120 120
121 DataRef<StyleGridData> m_grid; 121 DataRef<StyleGridData> m_grid;
122 DataRef<StyleGridItemData> m_gridItem; 122 DataRef<StyleGridItemData> m_gridItem;
123 DataRef<StyleScrollSnapData> m_scrollSnap; 123 DataRef<StyleScrollSnapData> m_scrollSnap;
124 124
125 OwnPtrWillBePersistent<ContentData> m_content; 125 Persistent<ContentData> m_content;
126 OwnPtr<CounterDirectiveMap> m_counterDirectives; 126 OwnPtr<CounterDirectiveMap> m_counterDirectives;
127 OwnPtr<CSSAnimationData> m_animations; 127 OwnPtr<CSSAnimationData> m_animations;
128 OwnPtr<CSSTransitionData> m_transitions; 128 OwnPtr<CSSTransitionData> m_transitions;
129 129
130 RefPtr<ShadowList> m_boxShadow; 130 RefPtr<ShadowList> m_boxShadow;
131 131
132 RefPtr<StyleReflection> m_boxReflect; 132 RefPtr<StyleReflection> m_boxReflect;
133 133
134 RefPtrWillBePersistent<ShapeValue> m_shapeOutside; 134 Persistent<ShapeValue> m_shapeOutside;
135 RefPtr<ClipPathOperation> m_clipPath; 135 RefPtr<ClipPathOperation> m_clipPath;
136 136
137 FillLayer m_mask; 137 FillLayer m_mask;
138 NinePieceImage m_maskBoxImage; 138 NinePieceImage m_maskBoxImage;
139 139
140 FloatSize m_pageSize; 140 FloatSize m_pageSize;
141 Length m_shapeMargin; 141 Length m_shapeMargin;
142 142
143 StyleColor m_textDecorationColor; 143 StyleColor m_textDecorationColor;
144 StyleColor m_visitedLinkTextDecorationColor; 144 StyleColor m_visitedLinkTextDecorationColor;
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
213 unsigned m_hasAuthorBorder : 1; // Whether there is a author-defined border. 213 unsigned m_hasAuthorBorder : 1; // Whether there is a author-defined border.
214 214
215 private: 215 private:
216 StyleRareNonInheritedData(); 216 StyleRareNonInheritedData();
217 StyleRareNonInheritedData(const StyleRareNonInheritedData&); 217 StyleRareNonInheritedData(const StyleRareNonInheritedData&);
218 }; 218 };
219 219
220 } // namespace blink 220 } // namespace blink
221 221
222 #endif // StyleRareNonInheritedData_h 222 #endif // StyleRareNonInheritedData_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698