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

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

Issue 1161623004: Remove backface visibility (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 6 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 24 matching lines...) Expand all
35 , m_aspectRatioDenominator(RenderStyle::initialAspectRatioDenominator()) 35 , m_aspectRatioDenominator(RenderStyle::initialAspectRatioDenominator())
36 , m_aspectRatioNumerator(RenderStyle::initialAspectRatioNumerator()) 36 , m_aspectRatioNumerator(RenderStyle::initialAspectRatioNumerator())
37 , m_perspective(RenderStyle::initialPerspective()) 37 , m_perspective(RenderStyle::initialPerspective())
38 , m_perspectiveOriginX(RenderStyle::initialPerspectiveOriginX()) 38 , m_perspectiveOriginX(RenderStyle::initialPerspectiveOriginX())
39 , m_perspectiveOriginY(RenderStyle::initialPerspectiveOriginY()) 39 , m_perspectiveOriginY(RenderStyle::initialPerspectiveOriginY())
40 , m_clipPath(RenderStyle::initialClipPath()) 40 , m_clipPath(RenderStyle::initialClipPath())
41 , m_textDecorationColor(StyleColor::currentColor()) 41 , m_textDecorationColor(StyleColor::currentColor())
42 , m_order(RenderStyle::initialOrder()) 42 , m_order(RenderStyle::initialOrder())
43 , m_objectPosition(RenderStyle::initialObjectPosition()) 43 , m_objectPosition(RenderStyle::initialObjectPosition())
44 , m_transformStyle3D(RenderStyle::initialTransformStyle3D()) 44 , m_transformStyle3D(RenderStyle::initialTransformStyle3D())
45 , m_backfaceVisibility(RenderStyle::initialBackfaceVisibility())
46 , m_alignContent(RenderStyle::initialAlignContent()) 45 , m_alignContent(RenderStyle::initialAlignContent())
47 , m_alignItems(RenderStyle::initialAlignItems()) 46 , m_alignItems(RenderStyle::initialAlignItems())
48 , m_alignItemsOverflowAlignment(RenderStyle::initialAlignItemsOverflowAlignm ent()) 47 , m_alignItemsOverflowAlignment(RenderStyle::initialAlignItemsOverflowAlignm ent())
49 , m_alignSelf(RenderStyle::initialAlignSelf()) 48 , m_alignSelf(RenderStyle::initialAlignSelf())
50 , m_alignSelfOverflowAlignment(RenderStyle::initialAlignSelfOverflowAlignmen t()) 49 , m_alignSelfOverflowAlignment(RenderStyle::initialAlignSelfOverflowAlignmen t())
51 , m_justifyContent(RenderStyle::initialJustifyContent()) 50 , m_justifyContent(RenderStyle::initialJustifyContent())
52 , textOverflow(RenderStyle::initialTextOverflow()) 51 , textOverflow(RenderStyle::initialTextOverflow())
53 , m_textDecorationStyle(RenderStyle::initialTextDecorationStyle()) 52 , m_textDecorationStyle(RenderStyle::initialTextDecorationStyle())
54 , m_wrapFlow(RenderStyle::initialWrapFlow()) 53 , m_wrapFlow(RenderStyle::initialWrapFlow())
55 , m_wrapThrough(RenderStyle::initialWrapThrough()) 54 , m_wrapThrough(RenderStyle::initialWrapThrough())
(...skipping 22 matching lines...) Expand all
78 , m_filter(o.m_filter) 77 , m_filter(o.m_filter)
79 , m_counterDirectives(o.m_counterDirectives ? clone(*o.m_counterDirectives) : nullptr) 78 , m_counterDirectives(o.m_counterDirectives ? clone(*o.m_counterDirectives) : nullptr)
80 , m_boxShadow(o.m_boxShadow) 79 , m_boxShadow(o.m_boxShadow)
81 , m_animations(o.m_animations ? CSSAnimationData::create(*o.m_animations) : nullptr) 80 , m_animations(o.m_animations ? CSSAnimationData::create(*o.m_animations) : nullptr)
82 , m_transitions(o.m_transitions ? CSSTransitionData::create(*o.m_transitions ) : nullptr) 81 , m_transitions(o.m_transitions ? CSSTransitionData::create(*o.m_transitions ) : nullptr)
83 , m_clipPath(o.m_clipPath) 82 , m_clipPath(o.m_clipPath)
84 , m_textDecorationColor(o.m_textDecorationColor) 83 , m_textDecorationColor(o.m_textDecorationColor)
85 , m_order(o.m_order) 84 , m_order(o.m_order)
86 , m_objectPosition(o.m_objectPosition) 85 , m_objectPosition(o.m_objectPosition)
87 , m_transformStyle3D(o.m_transformStyle3D) 86 , m_transformStyle3D(o.m_transformStyle3D)
88 , m_backfaceVisibility(o.m_backfaceVisibility)
89 , m_alignContent(o.m_alignContent) 87 , m_alignContent(o.m_alignContent)
90 , m_alignItems(o.m_alignItems) 88 , m_alignItems(o.m_alignItems)
91 , m_alignItemsOverflowAlignment(o.m_alignItemsOverflowAlignment) 89 , m_alignItemsOverflowAlignment(o.m_alignItemsOverflowAlignment)
92 , m_alignSelf(o.m_alignSelf) 90 , m_alignSelf(o.m_alignSelf)
93 , m_alignSelfOverflowAlignment(o.m_alignSelfOverflowAlignment) 91 , m_alignSelfOverflowAlignment(o.m_alignSelfOverflowAlignment)
94 , m_justifyContent(o.m_justifyContent) 92 , m_justifyContent(o.m_justifyContent)
95 , textOverflow(o.textOverflow) 93 , textOverflow(o.textOverflow)
96 , m_textDecorationStyle(o.m_textDecorationStyle) 94 , m_textDecorationStyle(o.m_textDecorationStyle)
97 , m_wrapFlow(o.m_wrapFlow) 95 , m_wrapFlow(o.m_wrapFlow)
98 , m_wrapThrough(o.m_wrapThrough) 96 , m_wrapThrough(o.m_wrapThrough)
(...skipping 26 matching lines...) Expand all
125 && m_filter == o.m_filter 123 && m_filter == o.m_filter
126 && counterDataEquivalent(o) 124 && counterDataEquivalent(o)
127 && shadowDataEquivalent(o) 125 && shadowDataEquivalent(o)
128 && animationDataEquivalent(o) 126 && animationDataEquivalent(o)
129 && transitionDataEquivalent(o) 127 && transitionDataEquivalent(o)
130 && m_clipPath == o.m_clipPath 128 && m_clipPath == o.m_clipPath
131 && m_textDecorationColor == o.m_textDecorationColor 129 && m_textDecorationColor == o.m_textDecorationColor
132 && m_order == o.m_order 130 && m_order == o.m_order
133 && m_objectPosition == o.m_objectPosition 131 && m_objectPosition == o.m_objectPosition
134 && m_transformStyle3D == o.m_transformStyle3D 132 && m_transformStyle3D == o.m_transformStyle3D
135 && m_backfaceVisibility == o.m_backfaceVisibility
136 && m_alignContent == o.m_alignContent 133 && m_alignContent == o.m_alignContent
137 && m_alignItems == o.m_alignItems 134 && m_alignItems == o.m_alignItems
138 && m_alignItemsOverflowAlignment == o.m_alignItemsOverflowAlignment 135 && m_alignItemsOverflowAlignment == o.m_alignItemsOverflowAlignment
139 && m_alignSelf == o.m_alignSelf 136 && m_alignSelf == o.m_alignSelf
140 && m_alignSelfOverflowAlignment == o.m_alignSelfOverflowAlignment 137 && m_alignSelfOverflowAlignment == o.m_alignSelfOverflowAlignment
141 && m_justifyContent == o.m_justifyContent 138 && m_justifyContent == o.m_justifyContent
142 && textOverflow == o.textOverflow 139 && textOverflow == o.textOverflow
143 && m_textDecorationStyle == o.m_textDecorationStyle 140 && m_textDecorationStyle == o.m_textDecorationStyle
144 && m_wrapFlow == o.m_wrapFlow 141 && m_wrapFlow == o.m_wrapFlow
145 && m_wrapThrough == o.m_wrapThrough 142 && m_wrapThrough == o.m_wrapThrough
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 return false; 177 return false;
181 return m_transitions->transitionsMatchForStyleRecalc(*o.m_transitions); 178 return m_transitions->transitionsMatchForStyleRecalc(*o.m_transitions);
182 } 179 }
183 180
184 bool StyleRareNonInheritedData::hasFilters() const 181 bool StyleRareNonInheritedData::hasFilters() const
185 { 182 {
186 return m_filter.get() && !m_filter->m_operations.isEmpty(); 183 return m_filter.get() && !m_filter->m_operations.isEmpty();
187 } 184 }
188 185
189 } // namespace blink 186 } // namespace blink
OLDNEW
« no previous file with comments | « sky/engine/core/rendering/style/StyleRareNonInheritedData.h ('k') | sky/engine/public/platform/WebLayer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698