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

Side by Side Diff: Source/core/style/StyleRareNonInheritedData.cpp

Issue 1070143002: [Alignment] Single class for holding the alignment data. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased and got back previous setter names. Created 5 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) 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 47
48 FillLayer fillLayers; 48 FillLayer fillLayers;
49 NinePieceImage ninePieces; 49 NinePieceImage ninePieces;
50 LengthSize lengthSizes; 50 LengthSize lengthSizes;
51 Length lengths; 51 Length lengths;
52 52
53 StyleColor styleColors[8]; 53 StyleColor styleColors[8];
54 54
55 Vector<String> m_callbackSelectors; 55 Vector<String> m_callbackSelectors;
56 56
57 unsigned m_bitFields[4]; 57 StyleContentAlignmentData contentAlignmentData[2];
58 StyleSelfAlignmentData selfAlignmentData[4];
59
60 unsigned m_bitFields[2];
58 }; 61 };
59 62
60 static_assert(sizeof(StyleRareNonInheritedData) == sizeof(SameSizeStyleRareNonIn heritedData), "StyleRareNonInheritedData_should_stay_small"); 63 static_assert(sizeof(StyleRareNonInheritedData) == sizeof(SameSizeStyleRareNonIn heritedData), "StyleRareNonInheritedData_should_stay_small");
61 64
62 StyleRareNonInheritedData::StyleRareNonInheritedData() 65 StyleRareNonInheritedData::StyleRareNonInheritedData()
63 : opacity(ComputedStyle::initialOpacity()) 66 : opacity(ComputedStyle::initialOpacity())
64 , m_perspective(ComputedStyle::initialPerspective()) 67 , m_perspective(ComputedStyle::initialPerspective())
65 , m_shapeImageThreshold(ComputedStyle::initialShapeImageThreshold()) 68 , m_shapeImageThreshold(ComputedStyle::initialShapeImageThreshold())
66 , m_order(ComputedStyle::initialOrder()) 69 , m_order(ComputedStyle::initialOrder())
67 , m_perspectiveOrigin(ComputedStyle::initialPerspectiveOrigin()) 70 , m_perspectiveOrigin(ComputedStyle::initialPerspectiveOrigin())
68 , m_objectPosition(ComputedStyle::initialObjectPosition()) 71 , m_objectPosition(ComputedStyle::initialObjectPosition())
69 , lineClamp(ComputedStyle::initialLineClamp()) 72 , lineClamp(ComputedStyle::initialLineClamp())
70 , m_draggableRegionMode(DraggableRegionNone) 73 , m_draggableRegionMode(DraggableRegionNone)
71 , m_shapeOutside(ComputedStyle::initialShapeOutside()) 74 , m_shapeOutside(ComputedStyle::initialShapeOutside())
72 , m_clipPath(ComputedStyle::initialClipPath()) 75 , m_clipPath(ComputedStyle::initialClipPath())
73 , m_mask(MaskFillLayer, true) 76 , m_mask(MaskFillLayer, true)
74 , m_pageSize() 77 , m_pageSize()
75 , m_shapeMargin(ComputedStyle::initialShapeMargin()) 78 , m_shapeMargin(ComputedStyle::initialShapeMargin())
76 , m_textDecorationColor(StyleColor::currentColor()) 79 , m_textDecorationColor(StyleColor::currentColor())
77 , m_visitedLinkTextDecorationColor(StyleColor::currentColor()) 80 , m_visitedLinkTextDecorationColor(StyleColor::currentColor())
78 , m_visitedLinkBackgroundColor(ComputedStyle::initialBackgroundColor()) 81 , m_visitedLinkBackgroundColor(ComputedStyle::initialBackgroundColor())
79 , m_visitedLinkOutlineColor(StyleColor::currentColor()) 82 , m_visitedLinkOutlineColor(StyleColor::currentColor())
80 , m_visitedLinkBorderLeftColor(StyleColor::currentColor()) 83 , m_visitedLinkBorderLeftColor(StyleColor::currentColor())
81 , m_visitedLinkBorderRightColor(StyleColor::currentColor()) 84 , m_visitedLinkBorderRightColor(StyleColor::currentColor())
82 , m_visitedLinkBorderTopColor(StyleColor::currentColor()) 85 , m_visitedLinkBorderTopColor(StyleColor::currentColor())
83 , m_visitedLinkBorderBottomColor(StyleColor::currentColor()) 86 , m_visitedLinkBorderBottomColor(StyleColor::currentColor())
87 , m_alignContent(ComputedStyle::initialContentAlignment())
88 , m_alignItems(ComputedStyle::initialSelfAlignment())
89 , m_alignSelf(ComputedStyle::initialSelfAlignment())
90 , m_justifyContent(ComputedStyle::initialContentAlignment())
91 , m_justifyItems(ComputedStyle::initialSelfAlignment())
92 , m_justifySelf(ComputedStyle::initialSelfAlignment())
84 , m_pageSizeType(PAGE_SIZE_AUTO) 93 , m_pageSizeType(PAGE_SIZE_AUTO)
85 , m_transformStyle3D(ComputedStyle::initialTransformStyle3D()) 94 , m_transformStyle3D(ComputedStyle::initialTransformStyle3D())
86 , m_backfaceVisibility(ComputedStyle::initialBackfaceVisibility()) 95 , m_backfaceVisibility(ComputedStyle::initialBackfaceVisibility())
87 , m_alignContent(ComputedStyle::initialAlignContent())
88 , m_alignContentDistribution(ComputedStyle::initialAlignContentDistribution( ))
89 , m_alignContentOverflowAlignment(ComputedStyle::initialAlignContentOverflow Alignment())
90 , m_alignItems(ComputedStyle::initialAlignItems())
91 , m_alignItemsOverflowAlignment(ComputedStyle::initialAlignItemsOverflowAlig nment())
92 , m_alignSelf(ComputedStyle::initialAlignSelf())
93 , m_alignSelfOverflowAlignment(ComputedStyle::initialAlignSelfOverflowAlignm ent())
94 , m_justifyContent(ComputedStyle::initialJustifyContent())
95 , m_justifyContentDistribution(ComputedStyle::initialJustifyContentDistribut ion())
96 , m_justifyContentOverflowAlignment(ComputedStyle::initialJustifyContentOver flowAlignment())
97 , userDrag(ComputedStyle::initialUserDrag()) 96 , userDrag(ComputedStyle::initialUserDrag())
98 , textOverflow(ComputedStyle::initialTextOverflow()) 97 , textOverflow(ComputedStyle::initialTextOverflow())
99 , marginBeforeCollapse(MCOLLAPSE) 98 , marginBeforeCollapse(MCOLLAPSE)
100 , marginAfterCollapse(MCOLLAPSE) 99 , marginAfterCollapse(MCOLLAPSE)
101 , m_appearance(ComputedStyle::initialAppearance()) 100 , m_appearance(ComputedStyle::initialAppearance())
102 , m_textCombine(ComputedStyle::initialTextCombine()) 101 , m_textCombine(ComputedStyle::initialTextCombine())
103 , m_textDecorationStyle(ComputedStyle::initialTextDecorationStyle()) 102 , m_textDecorationStyle(ComputedStyle::initialTextDecorationStyle())
104 , m_wrapFlow(ComputedStyle::initialWrapFlow()) 103 , m_wrapFlow(ComputedStyle::initialWrapFlow())
105 , m_wrapThrough(ComputedStyle::initialWrapThrough()) 104 , m_wrapThrough(ComputedStyle::initialWrapThrough())
106 , m_hasCurrentOpacityAnimation(false) 105 , m_hasCurrentOpacityAnimation(false)
107 , m_hasCurrentTransformAnimation(false) 106 , m_hasCurrentTransformAnimation(false)
108 , m_hasCurrentFilterAnimation(false) 107 , m_hasCurrentFilterAnimation(false)
109 , m_runningOpacityAnimationOnCompositor(false) 108 , m_runningOpacityAnimationOnCompositor(false)
110 , m_runningTransformAnimationOnCompositor(false) 109 , m_runningTransformAnimationOnCompositor(false)
111 , m_runningFilterAnimationOnCompositor(false) 110 , m_runningFilterAnimationOnCompositor(false)
112 , m_effectiveBlendMode(ComputedStyle::initialBlendMode()) 111 , m_effectiveBlendMode(ComputedStyle::initialBlendMode())
113 , m_touchAction(ComputedStyle::initialTouchAction()) 112 , m_touchAction(ComputedStyle::initialTouchAction())
114 , m_objectFit(ComputedStyle::initialObjectFit()) 113 , m_objectFit(ComputedStyle::initialObjectFit())
115 , m_isolation(ComputedStyle::initialIsolation()) 114 , m_isolation(ComputedStyle::initialIsolation())
116 , m_justifyItems(ComputedStyle::initialJustifyItems())
117 , m_justifyItemsOverflowAlignment(ComputedStyle::initialJustifyItemsOverflow Alignment())
118 , m_justifyItemsPositionType(ComputedStyle::initialJustifyItemsPositionType( ))
119 , m_justifySelf(ComputedStyle::initialJustifySelf())
120 , m_justifySelfOverflowAlignment(ComputedStyle::initialJustifySelfOverflowAl ignment())
121 , m_scrollBehavior(ComputedStyle::initialScrollBehavior()) 115 , m_scrollBehavior(ComputedStyle::initialScrollBehavior())
122 , m_scrollBlocksOn(ComputedStyle::initialScrollBlocksOn()) 116 , m_scrollBlocksOn(ComputedStyle::initialScrollBlocksOn())
123 , m_requiresAcceleratedCompositingForExternalReasons(false) 117 , m_requiresAcceleratedCompositingForExternalReasons(false)
124 , m_hasInlineTransform(false) 118 , m_hasInlineTransform(false)
125 , m_resize(ComputedStyle::initialResize()) 119 , m_resize(ComputedStyle::initialResize())
126 , m_hasCompositorProxy(false) 120 , m_hasCompositorProxy(false)
127 { 121 {
128 m_maskBoxImage.setMaskDefaults(); 122 m_maskBoxImage.setMaskDefaults();
129 } 123 }
130 124
(...skipping 28 matching lines...) Expand all
159 , m_pageSize(o.m_pageSize) 153 , m_pageSize(o.m_pageSize)
160 , m_shapeMargin(o.m_shapeMargin) 154 , m_shapeMargin(o.m_shapeMargin)
161 , m_textDecorationColor(o.m_textDecorationColor) 155 , m_textDecorationColor(o.m_textDecorationColor)
162 , m_visitedLinkTextDecorationColor(o.m_visitedLinkTextDecorationColor) 156 , m_visitedLinkTextDecorationColor(o.m_visitedLinkTextDecorationColor)
163 , m_visitedLinkBackgroundColor(o.m_visitedLinkBackgroundColor) 157 , m_visitedLinkBackgroundColor(o.m_visitedLinkBackgroundColor)
164 , m_visitedLinkOutlineColor(o.m_visitedLinkOutlineColor) 158 , m_visitedLinkOutlineColor(o.m_visitedLinkOutlineColor)
165 , m_visitedLinkBorderLeftColor(o.m_visitedLinkBorderLeftColor) 159 , m_visitedLinkBorderLeftColor(o.m_visitedLinkBorderLeftColor)
166 , m_visitedLinkBorderRightColor(o.m_visitedLinkBorderRightColor) 160 , m_visitedLinkBorderRightColor(o.m_visitedLinkBorderRightColor)
167 , m_visitedLinkBorderTopColor(o.m_visitedLinkBorderTopColor) 161 , m_visitedLinkBorderTopColor(o.m_visitedLinkBorderTopColor)
168 , m_visitedLinkBorderBottomColor(o.m_visitedLinkBorderBottomColor) 162 , m_visitedLinkBorderBottomColor(o.m_visitedLinkBorderBottomColor)
163 , m_alignContent(o.m_alignContent)
164 , m_alignItems(o.m_alignItems)
165 , m_alignSelf(o.m_alignSelf)
166 , m_justifyContent(o.m_justifyContent)
167 , m_justifyItems(o.m_justifyItems)
168 , m_justifySelf(o.m_justifySelf)
169 , m_pageSizeType(o.m_pageSizeType) 169 , m_pageSizeType(o.m_pageSizeType)
170 , m_transformStyle3D(o.m_transformStyle3D) 170 , m_transformStyle3D(o.m_transformStyle3D)
171 , m_backfaceVisibility(o.m_backfaceVisibility) 171 , m_backfaceVisibility(o.m_backfaceVisibility)
172 , m_alignContent(o.m_alignContent)
173 , m_alignContentDistribution(o.m_alignContentDistribution)
174 , m_alignContentOverflowAlignment(o.m_alignContentOverflowAlignment)
175 , m_alignItems(o.m_alignItems)
176 , m_alignItemsOverflowAlignment(o.m_alignItemsOverflowAlignment)
177 , m_alignSelf(o.m_alignSelf)
178 , m_alignSelfOverflowAlignment(o.m_alignSelfOverflowAlignment)
179 , m_justifyContent(o.m_justifyContent)
180 , m_justifyContentDistribution(o.m_justifyContentDistribution)
181 , m_justifyContentOverflowAlignment(o.m_justifyContentOverflowAlignment)
182 , userDrag(o.userDrag) 172 , userDrag(o.userDrag)
183 , textOverflow(o.textOverflow) 173 , textOverflow(o.textOverflow)
184 , marginBeforeCollapse(o.marginBeforeCollapse) 174 , marginBeforeCollapse(o.marginBeforeCollapse)
185 , marginAfterCollapse(o.marginAfterCollapse) 175 , marginAfterCollapse(o.marginAfterCollapse)
186 , m_appearance(o.m_appearance) 176 , m_appearance(o.m_appearance)
187 , m_textCombine(o.m_textCombine) 177 , m_textCombine(o.m_textCombine)
188 , m_textDecorationStyle(o.m_textDecorationStyle) 178 , m_textDecorationStyle(o.m_textDecorationStyle)
189 , m_wrapFlow(o.m_wrapFlow) 179 , m_wrapFlow(o.m_wrapFlow)
190 , m_wrapThrough(o.m_wrapThrough) 180 , m_wrapThrough(o.m_wrapThrough)
191 , m_hasCurrentOpacityAnimation(o.m_hasCurrentOpacityAnimation) 181 , m_hasCurrentOpacityAnimation(o.m_hasCurrentOpacityAnimation)
192 , m_hasCurrentTransformAnimation(o.m_hasCurrentTransformAnimation) 182 , m_hasCurrentTransformAnimation(o.m_hasCurrentTransformAnimation)
193 , m_hasCurrentFilterAnimation(o.m_hasCurrentFilterAnimation) 183 , m_hasCurrentFilterAnimation(o.m_hasCurrentFilterAnimation)
194 , m_runningOpacityAnimationOnCompositor(o.m_runningOpacityAnimationOnComposi tor) 184 , m_runningOpacityAnimationOnCompositor(o.m_runningOpacityAnimationOnComposi tor)
195 , m_runningTransformAnimationOnCompositor(o.m_runningTransformAnimationOnCom positor) 185 , m_runningTransformAnimationOnCompositor(o.m_runningTransformAnimationOnCom positor)
196 , m_runningFilterAnimationOnCompositor(o.m_runningFilterAnimationOnComposito r) 186 , m_runningFilterAnimationOnCompositor(o.m_runningFilterAnimationOnComposito r)
197 , m_effectiveBlendMode(o.m_effectiveBlendMode) 187 , m_effectiveBlendMode(o.m_effectiveBlendMode)
198 , m_touchAction(o.m_touchAction) 188 , m_touchAction(o.m_touchAction)
199 , m_objectFit(o.m_objectFit) 189 , m_objectFit(o.m_objectFit)
200 , m_isolation(o.m_isolation) 190 , m_isolation(o.m_isolation)
201 , m_justifyItems(o.m_justifyItems)
202 , m_justifyItemsOverflowAlignment(o.m_justifyItemsOverflowAlignment)
203 , m_justifyItemsPositionType(o.m_justifyItemsPositionType)
204 , m_justifySelf(o.m_justifySelf)
205 , m_justifySelfOverflowAlignment(o.m_justifySelfOverflowAlignment)
206 , m_scrollBehavior(o.m_scrollBehavior) 191 , m_scrollBehavior(o.m_scrollBehavior)
207 , m_scrollBlocksOn(o.m_scrollBlocksOn) 192 , m_scrollBlocksOn(o.m_scrollBlocksOn)
208 , m_requiresAcceleratedCompositingForExternalReasons(o.m_requiresAccelerated CompositingForExternalReasons) 193 , m_requiresAcceleratedCompositingForExternalReasons(o.m_requiresAccelerated CompositingForExternalReasons)
209 , m_hasInlineTransform(o.m_hasInlineTransform) 194 , m_hasInlineTransform(o.m_hasInlineTransform)
210 , m_resize(o.m_resize) 195 , m_resize(o.m_resize)
211 , m_hasCompositorProxy(o.m_hasCompositorProxy) 196 , m_hasCompositorProxy(o.m_hasCompositorProxy)
212 { 197 {
213 } 198 }
214 199
215 StyleRareNonInheritedData::~StyleRareNonInheritedData() 200 StyleRareNonInheritedData::~StyleRareNonInheritedData()
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
251 && clipPathDataEquivalent(o) 236 && clipPathDataEquivalent(o)
252 && m_textDecorationColor == o.m_textDecorationColor 237 && m_textDecorationColor == o.m_textDecorationColor
253 && m_visitedLinkTextDecorationColor == o.m_visitedLinkTextDecorationColo r 238 && m_visitedLinkTextDecorationColor == o.m_visitedLinkTextDecorationColo r
254 && m_visitedLinkBackgroundColor == o.m_visitedLinkBackgroundColor 239 && m_visitedLinkBackgroundColor == o.m_visitedLinkBackgroundColor
255 && m_visitedLinkOutlineColor == o.m_visitedLinkOutlineColor 240 && m_visitedLinkOutlineColor == o.m_visitedLinkOutlineColor
256 && m_visitedLinkBorderLeftColor == o.m_visitedLinkBorderLeftColor 241 && m_visitedLinkBorderLeftColor == o.m_visitedLinkBorderLeftColor
257 && m_visitedLinkBorderRightColor == o.m_visitedLinkBorderRightColor 242 && m_visitedLinkBorderRightColor == o.m_visitedLinkBorderRightColor
258 && m_visitedLinkBorderTopColor == o.m_visitedLinkBorderTopColor 243 && m_visitedLinkBorderTopColor == o.m_visitedLinkBorderTopColor
259 && m_visitedLinkBorderBottomColor == o.m_visitedLinkBorderBottomColor 244 && m_visitedLinkBorderBottomColor == o.m_visitedLinkBorderBottomColor
260 && m_callbackSelectors == o.m_callbackSelectors 245 && m_callbackSelectors == o.m_callbackSelectors
246 && m_alignContent == o.m_alignContent
247 && m_alignItems == o.m_alignItems
248 && m_alignSelf == o.m_alignSelf
249 && m_justifyContent == o.m_justifyContent
250 && m_justifyItems == o.m_justifyItems
251 && m_justifySelf == o.m_justifySelf
261 && m_pageSizeType == o.m_pageSizeType 252 && m_pageSizeType == o.m_pageSizeType
262 && m_transformStyle3D == o.m_transformStyle3D 253 && m_transformStyle3D == o.m_transformStyle3D
263 && m_backfaceVisibility == o.m_backfaceVisibility 254 && m_backfaceVisibility == o.m_backfaceVisibility
264 && m_alignContent == o.m_alignContent
265 && m_alignContentDistribution == o.m_alignContentDistribution
266 && m_alignContentOverflowAlignment == o.m_alignContentOverflowAlignment
267 && m_alignItems == o.m_alignItems
268 && m_alignItemsOverflowAlignment == o.m_alignItemsOverflowAlignment
269 && m_alignSelf == o.m_alignSelf
270 && m_alignSelfOverflowAlignment == o.m_alignSelfOverflowAlignment
271 && m_justifyContent == o.m_justifyContent
272 && m_justifyContentDistribution == o.m_justifyContentDistribution
273 && m_justifyContentOverflowAlignment == o.m_justifyContentOverflowAlignm ent
274 && userDrag == o.userDrag 255 && userDrag == o.userDrag
275 && textOverflow == o.textOverflow 256 && textOverflow == o.textOverflow
276 && marginBeforeCollapse == o.marginBeforeCollapse 257 && marginBeforeCollapse == o.marginBeforeCollapse
277 && marginAfterCollapse == o.marginAfterCollapse 258 && marginAfterCollapse == o.marginAfterCollapse
278 && m_appearance == o.m_appearance 259 && m_appearance == o.m_appearance
279 && m_textCombine == o.m_textCombine 260 && m_textCombine == o.m_textCombine
280 && m_textDecorationStyle == o.m_textDecorationStyle 261 && m_textDecorationStyle == o.m_textDecorationStyle
281 && m_wrapFlow == o.m_wrapFlow 262 && m_wrapFlow == o.m_wrapFlow
282 && m_wrapThrough == o.m_wrapThrough 263 && m_wrapThrough == o.m_wrapThrough
283 && m_hasCurrentOpacityAnimation == o.m_hasCurrentOpacityAnimation 264 && m_hasCurrentOpacityAnimation == o.m_hasCurrentOpacityAnimation
284 && m_hasCurrentTransformAnimation == o.m_hasCurrentTransformAnimation 265 && m_hasCurrentTransformAnimation == o.m_hasCurrentTransformAnimation
285 && m_hasCurrentFilterAnimation == o.m_hasCurrentFilterAnimation 266 && m_hasCurrentFilterAnimation == o.m_hasCurrentFilterAnimation
286 && m_effectiveBlendMode == o.m_effectiveBlendMode 267 && m_effectiveBlendMode == o.m_effectiveBlendMode
287 && m_touchAction == o.m_touchAction 268 && m_touchAction == o.m_touchAction
288 && m_objectFit == o.m_objectFit 269 && m_objectFit == o.m_objectFit
289 && m_isolation == o.m_isolation 270 && m_isolation == o.m_isolation
290 && m_justifyItems == o.m_justifyItems
291 && m_justifyItemsOverflowAlignment == o.m_justifyItemsOverflowAlignment
292 && m_justifyItemsPositionType == o.m_justifyItemsPositionType
293 && m_justifySelf == o.m_justifySelf
294 && m_justifySelfOverflowAlignment == o.m_justifySelfOverflowAlignment
295 && m_scrollBehavior == o.m_scrollBehavior 271 && m_scrollBehavior == o.m_scrollBehavior
296 && m_scrollBlocksOn == o.m_scrollBlocksOn 272 && m_scrollBlocksOn == o.m_scrollBlocksOn
297 && m_requiresAcceleratedCompositingForExternalReasons == o.m_requiresAcc eleratedCompositingForExternalReasons 273 && m_requiresAcceleratedCompositingForExternalReasons == o.m_requiresAcc eleratedCompositingForExternalReasons
298 && m_hasInlineTransform == o.m_hasInlineTransform 274 && m_hasInlineTransform == o.m_hasInlineTransform
299 && m_resize == o.m_resize 275 && m_resize == o.m_resize
300 && m_hasCompositorProxy == o.m_hasCompositorProxy; 276 && m_hasCompositorProxy == o.m_hasCompositorProxy;
301 } 277 }
302 278
303 bool StyleRareNonInheritedData::contentDataEquivalent(const StyleRareNonInherite dData& o) const 279 bool StyleRareNonInheritedData::contentDataEquivalent(const StyleRareNonInherite dData& o) const
304 { 280 {
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
355 { 331 {
356 return dataEquivalent(m_shapeOutside, o.m_shapeOutside); 332 return dataEquivalent(m_shapeOutside, o.m_shapeOutside);
357 } 333 }
358 334
359 bool StyleRareNonInheritedData::clipPathDataEquivalent(const StyleRareNonInherit edData& o) const 335 bool StyleRareNonInheritedData::clipPathDataEquivalent(const StyleRareNonInherit edData& o) const
360 { 336 {
361 return dataEquivalent(m_clipPath, o.m_clipPath); 337 return dataEquivalent(m_clipPath, o.m_clipPath);
362 } 338 }
363 339
364 } // namespace blink 340 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/style/StyleRareNonInheritedData.h ('k') | Source/core/style/StyleSelfAlignmentData.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698