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

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

Issue 1287623002: Delete blink code for scroll-blocks-on (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Merge with trunk (no changes from previous patch) Created 5 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/style/StyleRareNonInheritedData.h ('k') | Source/core/testing/Internals.idl » ('j') | 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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 , m_hasCurrentTransformAnimation(false) 110 , m_hasCurrentTransformAnimation(false)
111 , m_hasCurrentFilterAnimation(false) 111 , m_hasCurrentFilterAnimation(false)
112 , m_runningOpacityAnimationOnCompositor(false) 112 , m_runningOpacityAnimationOnCompositor(false)
113 , m_runningTransformAnimationOnCompositor(false) 113 , m_runningTransformAnimationOnCompositor(false)
114 , m_runningFilterAnimationOnCompositor(false) 114 , m_runningFilterAnimationOnCompositor(false)
115 , m_effectiveBlendMode(ComputedStyle::initialBlendMode()) 115 , m_effectiveBlendMode(ComputedStyle::initialBlendMode())
116 , m_touchAction(ComputedStyle::initialTouchAction()) 116 , m_touchAction(ComputedStyle::initialTouchAction())
117 , m_objectFit(ComputedStyle::initialObjectFit()) 117 , m_objectFit(ComputedStyle::initialObjectFit())
118 , m_isolation(ComputedStyle::initialIsolation()) 118 , m_isolation(ComputedStyle::initialIsolation())
119 , m_scrollBehavior(ComputedStyle::initialScrollBehavior()) 119 , m_scrollBehavior(ComputedStyle::initialScrollBehavior())
120 , m_scrollBlocksOn(ComputedStyle::initialScrollBlocksOn())
121 , m_scrollSnapType(ComputedStyle::initialScrollSnapType()) 120 , m_scrollSnapType(ComputedStyle::initialScrollSnapType())
122 , m_requiresAcceleratedCompositingForExternalReasons(false) 121 , m_requiresAcceleratedCompositingForExternalReasons(false)
123 , m_hasInlineTransform(false) 122 , m_hasInlineTransform(false)
124 , m_resize(ComputedStyle::initialResize()) 123 , m_resize(ComputedStyle::initialResize())
125 , m_hasCompositorProxy(false) 124 , m_hasCompositorProxy(false)
126 { 125 {
127 m_maskBoxImage.setMaskDefaults(); 126 m_maskBoxImage.setMaskDefaults();
128 } 127 }
129 128
130 StyleRareNonInheritedData::StyleRareNonInheritedData(const StyleRareNonInherited Data& o) 129 StyleRareNonInheritedData::StyleRareNonInheritedData(const StyleRareNonInherited Data& o)
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 , m_hasCurrentTransformAnimation(o.m_hasCurrentTransformAnimation) 186 , m_hasCurrentTransformAnimation(o.m_hasCurrentTransformAnimation)
188 , m_hasCurrentFilterAnimation(o.m_hasCurrentFilterAnimation) 187 , m_hasCurrentFilterAnimation(o.m_hasCurrentFilterAnimation)
189 , m_runningOpacityAnimationOnCompositor(o.m_runningOpacityAnimationOnComposi tor) 188 , m_runningOpacityAnimationOnCompositor(o.m_runningOpacityAnimationOnComposi tor)
190 , m_runningTransformAnimationOnCompositor(o.m_runningTransformAnimationOnCom positor) 189 , m_runningTransformAnimationOnCompositor(o.m_runningTransformAnimationOnCom positor)
191 , m_runningFilterAnimationOnCompositor(o.m_runningFilterAnimationOnComposito r) 190 , m_runningFilterAnimationOnCompositor(o.m_runningFilterAnimationOnComposito r)
192 , m_effectiveBlendMode(o.m_effectiveBlendMode) 191 , m_effectiveBlendMode(o.m_effectiveBlendMode)
193 , m_touchAction(o.m_touchAction) 192 , m_touchAction(o.m_touchAction)
194 , m_objectFit(o.m_objectFit) 193 , m_objectFit(o.m_objectFit)
195 , m_isolation(o.m_isolation) 194 , m_isolation(o.m_isolation)
196 , m_scrollBehavior(o.m_scrollBehavior) 195 , m_scrollBehavior(o.m_scrollBehavior)
197 , m_scrollBlocksOn(o.m_scrollBlocksOn)
198 , m_scrollSnapType(o.m_scrollSnapType) 196 , m_scrollSnapType(o.m_scrollSnapType)
199 , m_requiresAcceleratedCompositingForExternalReasons(o.m_requiresAccelerated CompositingForExternalReasons) 197 , m_requiresAcceleratedCompositingForExternalReasons(o.m_requiresAccelerated CompositingForExternalReasons)
200 , m_hasInlineTransform(o.m_hasInlineTransform) 198 , m_hasInlineTransform(o.m_hasInlineTransform)
201 , m_resize(o.m_resize) 199 , m_resize(o.m_resize)
202 , m_hasCompositorProxy(o.m_hasCompositorProxy) 200 , m_hasCompositorProxy(o.m_hasCompositorProxy)
203 { 201 {
204 } 202 }
205 203
206 StyleRareNonInheritedData::~StyleRareNonInheritedData() 204 StyleRareNonInheritedData::~StyleRareNonInheritedData()
207 { 205 {
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
268 && m_wrapFlow == o.m_wrapFlow 266 && m_wrapFlow == o.m_wrapFlow
269 && m_wrapThrough == o.m_wrapThrough 267 && m_wrapThrough == o.m_wrapThrough
270 && m_hasCurrentOpacityAnimation == o.m_hasCurrentOpacityAnimation 268 && m_hasCurrentOpacityAnimation == o.m_hasCurrentOpacityAnimation
271 && m_hasCurrentTransformAnimation == o.m_hasCurrentTransformAnimation 269 && m_hasCurrentTransformAnimation == o.m_hasCurrentTransformAnimation
272 && m_hasCurrentFilterAnimation == o.m_hasCurrentFilterAnimation 270 && m_hasCurrentFilterAnimation == o.m_hasCurrentFilterAnimation
273 && m_effectiveBlendMode == o.m_effectiveBlendMode 271 && m_effectiveBlendMode == o.m_effectiveBlendMode
274 && m_touchAction == o.m_touchAction 272 && m_touchAction == o.m_touchAction
275 && m_objectFit == o.m_objectFit 273 && m_objectFit == o.m_objectFit
276 && m_isolation == o.m_isolation 274 && m_isolation == o.m_isolation
277 && m_scrollBehavior == o.m_scrollBehavior 275 && m_scrollBehavior == o.m_scrollBehavior
278 && m_scrollBlocksOn == o.m_scrollBlocksOn 276 && m_scrollSnapType == o.m_scrollSnapType
279 && m_scrollBlocksOn == o.m_scrollSnapType
280 && m_requiresAcceleratedCompositingForExternalReasons == o.m_requiresAcc eleratedCompositingForExternalReasons 277 && m_requiresAcceleratedCompositingForExternalReasons == o.m_requiresAcc eleratedCompositingForExternalReasons
281 && m_hasInlineTransform == o.m_hasInlineTransform 278 && m_hasInlineTransform == o.m_hasInlineTransform
282 && m_resize == o.m_resize 279 && m_resize == o.m_resize
283 && m_hasCompositorProxy == o.m_hasCompositorProxy; 280 && m_hasCompositorProxy == o.m_hasCompositorProxy;
284 } 281 }
285 282
286 bool StyleRareNonInheritedData::contentDataEquivalent(const StyleRareNonInherite dData& o) const 283 bool StyleRareNonInheritedData::contentDataEquivalent(const StyleRareNonInherite dData& o) const
287 { 284 {
288 ContentData* a = m_content.get(); 285 ContentData* a = m_content.get();
289 ContentData* b = o.m_content.get(); 286 ContentData* b = o.m_content.get();
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
338 { 335 {
339 return dataEquivalent(m_shapeOutside, o.m_shapeOutside); 336 return dataEquivalent(m_shapeOutside, o.m_shapeOutside);
340 } 337 }
341 338
342 bool StyleRareNonInheritedData::clipPathDataEquivalent(const StyleRareNonInherit edData& o) const 339 bool StyleRareNonInheritedData::clipPathDataEquivalent(const StyleRareNonInherit edData& o) const
343 { 340 {
344 return dataEquivalent(m_clipPath, o.m_clipPath); 341 return dataEquivalent(m_clipPath, o.m_clipPath);
345 } 342 }
346 343
347 } // namespace blink 344 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/style/StyleRareNonInheritedData.h ('k') | Source/core/testing/Internals.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698