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

Side by Side Diff: sky/engine/core/rendering/style/StyleRareNonInheritedData.h

Issue 698613002: Remove border-fit. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 unsigned m_alignItems : 4; // ItemPosition 138 unsigned m_alignItems : 4; // ItemPosition
139 unsigned m_alignItemsOverflowAlignment : 2; // OverflowAlignment 139 unsigned m_alignItemsOverflowAlignment : 2; // OverflowAlignment
140 unsigned m_alignSelf : 4; // ItemPosition 140 unsigned m_alignSelf : 4; // ItemPosition
141 unsigned m_alignSelfOverflowAlignment : 2; // OverflowAlignment 141 unsigned m_alignSelfOverflowAlignment : 2; // OverflowAlignment
142 unsigned m_justifyContent : 3; // EJustifyContent 142 unsigned m_justifyContent : 3; // EJustifyContent
143 143
144 unsigned userDrag : 2; // EUserDrag 144 unsigned userDrag : 2; // EUserDrag
145 unsigned textOverflow : 1; // Whether or not lines that spill out should be truncated with "..." 145 unsigned textOverflow : 1; // Whether or not lines that spill out should be truncated with "..."
146 unsigned marginBeforeCollapse : 2; // EMarginCollapse 146 unsigned marginBeforeCollapse : 2; // EMarginCollapse
147 unsigned marginAfterCollapse : 2; // EMarginCollapse 147 unsigned marginAfterCollapse : 2; // EMarginCollapse
148 unsigned m_borderFit : 1; // EBorderFit
149 148
150 unsigned m_textDecorationStyle : 3; // TextDecorationStyle 149 unsigned m_textDecorationStyle : 3; // TextDecorationStyle
151 unsigned m_wrapFlow: 3; // WrapFlow 150 unsigned m_wrapFlow: 3; // WrapFlow
152 unsigned m_wrapThrough: 1; // WrapThrough 151 unsigned m_wrapThrough: 1; // WrapThrough
153 152
154 unsigned m_hasCurrentOpacityAnimation : 1; 153 unsigned m_hasCurrentOpacityAnimation : 1;
155 unsigned m_hasCurrentTransformAnimation : 1; 154 unsigned m_hasCurrentTransformAnimation : 1;
156 unsigned m_hasCurrentFilterAnimation : 1; 155 unsigned m_hasCurrentFilterAnimation : 1;
157 unsigned m_runningOpacityAnimationOnCompositor : 1; 156 unsigned m_runningOpacityAnimationOnCompositor : 1;
158 unsigned m_runningTransformAnimationOnCompositor : 1; 157 unsigned m_runningTransformAnimationOnCompositor : 1;
(...skipping 30 matching lines...) Expand all
189 unsigned m_hasInlineTransform : 1; 188 unsigned m_hasInlineTransform : 1;
190 189
191 private: 190 private:
192 StyleRareNonInheritedData(); 191 StyleRareNonInheritedData();
193 StyleRareNonInheritedData(const StyleRareNonInheritedData&); 192 StyleRareNonInheritedData(const StyleRareNonInheritedData&);
194 }; 193 };
195 194
196 } // namespace blink 195 } // namespace blink
197 196
198 #endif // StyleRareNonInheritedData_h 197 #endif // StyleRareNonInheritedData_h
OLDNEW
« no previous file with comments | « sky/engine/core/rendering/style/RenderStyleConstants.h ('k') | sky/engine/core/rendering/style/StyleRareNonInheritedData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698