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

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

Issue 1896893004: Hook up style invalidation for CSS Paint API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@css-paint-register
Patch Set: . Created 4 years, 7 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 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 StyleColor m_visitedLinkTextDecorationColor; 146 StyleColor m_visitedLinkTextDecorationColor;
147 StyleColor m_visitedLinkBackgroundColor; 147 StyleColor m_visitedLinkBackgroundColor;
148 StyleColor m_visitedLinkOutlineColor; 148 StyleColor m_visitedLinkOutlineColor;
149 StyleColor m_visitedLinkBorderLeftColor; 149 StyleColor m_visitedLinkBorderLeftColor;
150 StyleColor m_visitedLinkBorderRightColor; 150 StyleColor m_visitedLinkBorderRightColor;
151 StyleColor m_visitedLinkBorderTopColor; 151 StyleColor m_visitedLinkBorderTopColor;
152 StyleColor m_visitedLinkBorderBottomColor; 152 StyleColor m_visitedLinkBorderBottomColor;
153 153
154 Vector<String> m_callbackSelectors; 154 Vector<String> m_callbackSelectors;
155 155
156 Vector<Persistent<StyleImage>> m_paintImages;
rune 2016/04/29 08:06:37 It's a bit unfortunate that we store these in the
ikilpatrick 2016/04/29 22:42:01 Both, but primarily (slightly) less expensive. Now
157
156 StyleContentAlignmentData m_alignContent; 158 StyleContentAlignmentData m_alignContent;
157 StyleSelfAlignmentData m_alignItems; 159 StyleSelfAlignmentData m_alignItems;
158 StyleSelfAlignmentData m_alignSelf; 160 StyleSelfAlignmentData m_alignSelf;
159 StyleContentAlignmentData m_justifyContent; 161 StyleContentAlignmentData m_justifyContent;
160 StyleSelfAlignmentData m_justifyItems; 162 StyleSelfAlignmentData m_justifyItems;
161 StyleSelfAlignmentData m_justifySelf; 163 StyleSelfAlignmentData m_justifySelf;
162 164
163 unsigned m_pageSizeType : 2; // PageSizeType 165 unsigned m_pageSizeType : 2; // PageSizeType
164 unsigned m_transformStyle3D : 1; // ETransformStyle3D 166 unsigned m_transformStyle3D : 1; // ETransformStyle3D
165 unsigned m_backfaceVisibility : 1; // EBackfaceVisibility 167 unsigned m_backfaceVisibility : 1; // EBackfaceVisibility
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 unsigned m_hasAuthorBorder : 1; // Whether there is a author-defined border. 217 unsigned m_hasAuthorBorder : 1; // Whether there is a author-defined border.
216 218
217 private: 219 private:
218 StyleRareNonInheritedData(); 220 StyleRareNonInheritedData();
219 StyleRareNonInheritedData(const StyleRareNonInheritedData&); 221 StyleRareNonInheritedData(const StyleRareNonInheritedData&);
220 }; 222 };
221 223
222 } // namespace blink 224 } // namespace blink
223 225
224 #endif // StyleRareNonInheritedData_h 226 #endif // StyleRareNonInheritedData_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698