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

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

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
« no previous file with comments | « sky/engine/core/rendering/style/StyleRareNonInheritedData.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Antti Koivisto (koivisto@kde.org) 2 * Copyright (C) 1999 Antti Koivisto (koivisto@kde.org)
3 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved.
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 , m_alignContent(RenderStyle::initialAlignContent()) 54 , m_alignContent(RenderStyle::initialAlignContent())
55 , m_alignItems(RenderStyle::initialAlignItems()) 55 , m_alignItems(RenderStyle::initialAlignItems())
56 , m_alignItemsOverflowAlignment(RenderStyle::initialAlignItemsOverflowAlignm ent()) 56 , m_alignItemsOverflowAlignment(RenderStyle::initialAlignItemsOverflowAlignm ent())
57 , m_alignSelf(RenderStyle::initialAlignSelf()) 57 , m_alignSelf(RenderStyle::initialAlignSelf())
58 , m_alignSelfOverflowAlignment(RenderStyle::initialAlignSelfOverflowAlignmen t()) 58 , m_alignSelfOverflowAlignment(RenderStyle::initialAlignSelfOverflowAlignmen t())
59 , m_justifyContent(RenderStyle::initialJustifyContent()) 59 , m_justifyContent(RenderStyle::initialJustifyContent())
60 , userDrag(RenderStyle::initialUserDrag()) 60 , userDrag(RenderStyle::initialUserDrag())
61 , textOverflow(RenderStyle::initialTextOverflow()) 61 , textOverflow(RenderStyle::initialTextOverflow())
62 , marginBeforeCollapse(MCOLLAPSE) 62 , marginBeforeCollapse(MCOLLAPSE)
63 , marginAfterCollapse(MCOLLAPSE) 63 , marginAfterCollapse(MCOLLAPSE)
64 , m_borderFit(RenderStyle::initialBorderFit())
65 , m_textDecorationStyle(RenderStyle::initialTextDecorationStyle()) 64 , m_textDecorationStyle(RenderStyle::initialTextDecorationStyle())
66 , m_wrapFlow(RenderStyle::initialWrapFlow()) 65 , m_wrapFlow(RenderStyle::initialWrapFlow())
67 , m_wrapThrough(RenderStyle::initialWrapThrough()) 66 , m_wrapThrough(RenderStyle::initialWrapThrough())
68 , m_hasCurrentOpacityAnimation(false) 67 , m_hasCurrentOpacityAnimation(false)
69 , m_hasCurrentTransformAnimation(false) 68 , m_hasCurrentTransformAnimation(false)
70 , m_hasCurrentFilterAnimation(false) 69 , m_hasCurrentFilterAnimation(false)
71 , m_runningOpacityAnimationOnCompositor(false) 70 , m_runningOpacityAnimationOnCompositor(false)
72 , m_runningTransformAnimationOnCompositor(false) 71 , m_runningTransformAnimationOnCompositor(false)
73 , m_runningFilterAnimationOnCompositor(false) 72 , m_runningFilterAnimationOnCompositor(false)
74 , m_hasAspectRatio(false) 73 , m_hasAspectRatio(false)
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 , m_alignContent(o.m_alignContent) 123 , m_alignContent(o.m_alignContent)
125 , m_alignItems(o.m_alignItems) 124 , m_alignItems(o.m_alignItems)
126 , m_alignItemsOverflowAlignment(o.m_alignItemsOverflowAlignment) 125 , m_alignItemsOverflowAlignment(o.m_alignItemsOverflowAlignment)
127 , m_alignSelf(o.m_alignSelf) 126 , m_alignSelf(o.m_alignSelf)
128 , m_alignSelfOverflowAlignment(o.m_alignSelfOverflowAlignment) 127 , m_alignSelfOverflowAlignment(o.m_alignSelfOverflowAlignment)
129 , m_justifyContent(o.m_justifyContent) 128 , m_justifyContent(o.m_justifyContent)
130 , userDrag(o.userDrag) 129 , userDrag(o.userDrag)
131 , textOverflow(o.textOverflow) 130 , textOverflow(o.textOverflow)
132 , marginBeforeCollapse(o.marginBeforeCollapse) 131 , marginBeforeCollapse(o.marginBeforeCollapse)
133 , marginAfterCollapse(o.marginAfterCollapse) 132 , marginAfterCollapse(o.marginAfterCollapse)
134 , m_borderFit(o.m_borderFit)
135 , m_textDecorationStyle(o.m_textDecorationStyle) 133 , m_textDecorationStyle(o.m_textDecorationStyle)
136 , m_wrapFlow(o.m_wrapFlow) 134 , m_wrapFlow(o.m_wrapFlow)
137 , m_wrapThrough(o.m_wrapThrough) 135 , m_wrapThrough(o.m_wrapThrough)
138 , m_hasCurrentOpacityAnimation(o.m_hasCurrentOpacityAnimation) 136 , m_hasCurrentOpacityAnimation(o.m_hasCurrentOpacityAnimation)
139 , m_hasCurrentTransformAnimation(o.m_hasCurrentTransformAnimation) 137 , m_hasCurrentTransformAnimation(o.m_hasCurrentTransformAnimation)
140 , m_hasCurrentFilterAnimation(o.m_hasCurrentFilterAnimation) 138 , m_hasCurrentFilterAnimation(o.m_hasCurrentFilterAnimation)
141 , m_runningOpacityAnimationOnCompositor(o.m_runningOpacityAnimationOnComposi tor) 139 , m_runningOpacityAnimationOnCompositor(o.m_runningOpacityAnimationOnComposi tor)
142 , m_runningTransformAnimationOnCompositor(o.m_runningTransformAnimationOnCom positor) 140 , m_runningTransformAnimationOnCompositor(o.m_runningTransformAnimationOnCom positor)
143 , m_runningFilterAnimationOnCompositor(o.m_runningFilterAnimationOnComposito r) 141 , m_runningFilterAnimationOnCompositor(o.m_runningFilterAnimationOnComposito r)
144 , m_hasAspectRatio(o.m_hasAspectRatio) 142 , m_hasAspectRatio(o.m_hasAspectRatio)
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 && m_alignContent == o.m_alignContent 195 && m_alignContent == o.m_alignContent
198 && m_alignItems == o.m_alignItems 196 && m_alignItems == o.m_alignItems
199 && m_alignItemsOverflowAlignment == o.m_alignItemsOverflowAlignment 197 && m_alignItemsOverflowAlignment == o.m_alignItemsOverflowAlignment
200 && m_alignSelf == o.m_alignSelf 198 && m_alignSelf == o.m_alignSelf
201 && m_alignSelfOverflowAlignment == o.m_alignSelfOverflowAlignment 199 && m_alignSelfOverflowAlignment == o.m_alignSelfOverflowAlignment
202 && m_justifyContent == o.m_justifyContent 200 && m_justifyContent == o.m_justifyContent
203 && userDrag == o.userDrag 201 && userDrag == o.userDrag
204 && textOverflow == o.textOverflow 202 && textOverflow == o.textOverflow
205 && marginBeforeCollapse == o.marginBeforeCollapse 203 && marginBeforeCollapse == o.marginBeforeCollapse
206 && marginAfterCollapse == o.marginAfterCollapse 204 && marginAfterCollapse == o.marginAfterCollapse
207 && m_borderFit == o.m_borderFit
208 && m_textDecorationStyle == o.m_textDecorationStyle 205 && m_textDecorationStyle == o.m_textDecorationStyle
209 && m_wrapFlow == o.m_wrapFlow 206 && m_wrapFlow == o.m_wrapFlow
210 && m_wrapThrough == o.m_wrapThrough 207 && m_wrapThrough == o.m_wrapThrough
211 && m_hasCurrentOpacityAnimation == o.m_hasCurrentOpacityAnimation 208 && m_hasCurrentOpacityAnimation == o.m_hasCurrentOpacityAnimation
212 && m_hasCurrentTransformAnimation == o.m_hasCurrentTransformAnimation 209 && m_hasCurrentTransformAnimation == o.m_hasCurrentTransformAnimation
213 && m_hasCurrentFilterAnimation == o.m_hasCurrentFilterAnimation 210 && m_hasCurrentFilterAnimation == o.m_hasCurrentFilterAnimation
214 && m_effectiveBlendMode == o.m_effectiveBlendMode 211 && m_effectiveBlendMode == o.m_effectiveBlendMode
215 && m_hasAspectRatio == o.m_hasAspectRatio 212 && m_hasAspectRatio == o.m_hasAspectRatio
216 && m_touchAction == o.m_touchAction 213 && m_touchAction == o.m_touchAction
217 && m_objectFit == o.m_objectFit 214 && m_objectFit == o.m_objectFit
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
266 return false; 263 return false;
267 return m_transitions->transitionsMatchForStyleRecalc(*o.m_transitions); 264 return m_transitions->transitionsMatchForStyleRecalc(*o.m_transitions);
268 } 265 }
269 266
270 bool StyleRareNonInheritedData::hasFilters() const 267 bool StyleRareNonInheritedData::hasFilters() const
271 { 268 {
272 return m_filter.get() && !m_filter->m_operations.isEmpty(); 269 return m_filter.get() && !m_filter->m_operations.isEmpty();
273 } 270 }
274 271
275 } // namespace blink 272 } // namespace blink
OLDNEW
« no previous file with comments | « sky/engine/core/rendering/style/StyleRareNonInheritedData.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698