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

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

Issue 689853003: Remove CSS Grid Layout and grid media queries. (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) 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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 , m_aspectRatioDenominator(o.m_aspectRatioDenominator) 93 , m_aspectRatioDenominator(o.m_aspectRatioDenominator)
94 , m_aspectRatioNumerator(o.m_aspectRatioNumerator) 94 , m_aspectRatioNumerator(o.m_aspectRatioNumerator)
95 , m_perspective(o.m_perspective) 95 , m_perspective(o.m_perspective)
96 , m_perspectiveOriginX(o.m_perspectiveOriginX) 96 , m_perspectiveOriginX(o.m_perspectiveOriginX)
97 , m_perspectiveOriginY(o.m_perspectiveOriginY) 97 , m_perspectiveOriginY(o.m_perspectiveOriginY)
98 , lineClamp(o.lineClamp) 98 , lineClamp(o.lineClamp)
99 , m_flexibleBox(o.m_flexibleBox) 99 , m_flexibleBox(o.m_flexibleBox)
100 , m_transform(o.m_transform) 100 , m_transform(o.m_transform)
101 , m_willChange(o.m_willChange) 101 , m_willChange(o.m_willChange)
102 , m_filter(o.m_filter) 102 , m_filter(o.m_filter)
103 , m_grid(o.m_grid)
104 , m_gridItem(o.m_gridItem)
105 , m_content(o.m_content ? o.m_content->clone() : nullptr) 103 , m_content(o.m_content ? o.m_content->clone() : nullptr)
106 , m_counterDirectives(o.m_counterDirectives ? clone(*o.m_counterDirectives) : nullptr) 104 , m_counterDirectives(o.m_counterDirectives ? clone(*o.m_counterDirectives) : nullptr)
107 , m_boxShadow(o.m_boxShadow) 105 , m_boxShadow(o.m_boxShadow)
108 , m_animations(o.m_animations ? CSSAnimationData::create(*o.m_animations) : nullptr) 106 , m_animations(o.m_animations ? CSSAnimationData::create(*o.m_animations) : nullptr)
109 , m_transitions(o.m_transitions ? CSSTransitionData::create(*o.m_transitions ) : nullptr) 107 , m_transitions(o.m_transitions ? CSSTransitionData::create(*o.m_transitions ) : nullptr)
110 , m_mask(o.m_mask) 108 , m_mask(o.m_mask)
111 , m_maskBoxImage(o.m_maskBoxImage) 109 , m_maskBoxImage(o.m_maskBoxImage)
112 , m_pageSize(o.m_pageSize) 110 , m_pageSize(o.m_pageSize)
113 , m_shapeOutside(o.m_shapeOutside) 111 , m_shapeOutside(o.m_shapeOutside)
114 , m_shapeMargin(o.m_shapeMargin) 112 , m_shapeMargin(o.m_shapeMargin)
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 && m_aspectRatioDenominator == o.m_aspectRatioDenominator 163 && m_aspectRatioDenominator == o.m_aspectRatioDenominator
166 && m_aspectRatioNumerator == o.m_aspectRatioNumerator 164 && m_aspectRatioNumerator == o.m_aspectRatioNumerator
167 && m_perspective == o.m_perspective 165 && m_perspective == o.m_perspective
168 && m_perspectiveOriginX == o.m_perspectiveOriginX 166 && m_perspectiveOriginX == o.m_perspectiveOriginX
169 && m_perspectiveOriginY == o.m_perspectiveOriginY 167 && m_perspectiveOriginY == o.m_perspectiveOriginY
170 && lineClamp == o.lineClamp 168 && lineClamp == o.lineClamp
171 && m_flexibleBox == o.m_flexibleBox 169 && m_flexibleBox == o.m_flexibleBox
172 && m_transform == o.m_transform 170 && m_transform == o.m_transform
173 && m_willChange == o.m_willChange 171 && m_willChange == o.m_willChange
174 && m_filter == o.m_filter 172 && m_filter == o.m_filter
175 && m_grid == o.m_grid
176 && m_gridItem == o.m_gridItem
177 && contentDataEquivalent(o) 173 && contentDataEquivalent(o)
178 && counterDataEquivalent(o) 174 && counterDataEquivalent(o)
179 && shadowDataEquivalent(o) 175 && shadowDataEquivalent(o)
180 && animationDataEquivalent(o) 176 && animationDataEquivalent(o)
181 && transitionDataEquivalent(o) 177 && transitionDataEquivalent(o)
182 && m_mask == o.m_mask 178 && m_mask == o.m_mask
183 && m_maskBoxImage == o.m_maskBoxImage 179 && m_maskBoxImage == o.m_maskBoxImage
184 && m_pageSize == o.m_pageSize 180 && m_pageSize == o.m_pageSize
185 && m_shapeOutside == o.m_shapeOutside 181 && m_shapeOutside == o.m_shapeOutside
186 && m_shapeMargin == o.m_shapeMargin 182 && m_shapeMargin == o.m_shapeMargin
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
263 return false; 259 return false;
264 return m_transitions->transitionsMatchForStyleRecalc(*o.m_transitions); 260 return m_transitions->transitionsMatchForStyleRecalc(*o.m_transitions);
265 } 261 }
266 262
267 bool StyleRareNonInheritedData::hasFilters() const 263 bool StyleRareNonInheritedData::hasFilters() const
268 { 264 {
269 return m_filter.get() && !m_filter->m_operations.isEmpty(); 265 return m_filter.get() && !m_filter->m_operations.isEmpty();
270 } 266 }
271 267
272 } // namespace blink 268 } // namespace blink
OLDNEW
« no previous file with comments | « sky/engine/core/rendering/style/StyleRareNonInheritedData.h ('k') | sky/engine/platform/RuntimeEnabledFeatures.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698