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

Unified Diff: sky/engine/core/rendering/style/StyleRareNonInheritedData.cpp

Issue 731863003: Remove CSSCompositing (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: preland 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 side-by-side diff with in-line comments
Download patch
Index: sky/engine/core/rendering/style/StyleRareNonInheritedData.cpp
diff --git a/sky/engine/core/rendering/style/StyleRareNonInheritedData.cpp b/sky/engine/core/rendering/style/StyleRareNonInheritedData.cpp
index d7964e1a35e3f0d15f19118e09149726dae08a8a..0f4dab13fe907de2ce75213e232ab57292ece551 100644
--- a/sky/engine/core/rendering/style/StyleRareNonInheritedData.cpp
+++ b/sky/engine/core/rendering/style/StyleRareNonInheritedData.cpp
@@ -67,10 +67,8 @@ StyleRareNonInheritedData::StyleRareNonInheritedData()
, m_runningTransformAnimationOnCompositor(false)
, m_runningFilterAnimationOnCompositor(false)
, m_hasAspectRatio(false)
- , m_effectiveBlendMode(RenderStyle::initialBlendMode())
, m_touchAction(RenderStyle::initialTouchAction())
, m_objectFit(RenderStyle::initialObjectFit())
- , m_isolation(RenderStyle::initialIsolation())
, m_justifyItems(RenderStyle::initialJustifyItems())
, m_justifyItemsOverflowAlignment(RenderStyle::initialJustifyItemsOverflowAlignment())
, m_justifyItemsPositionType(RenderStyle::initialJustifyItemsPositionType())
@@ -130,10 +128,8 @@ StyleRareNonInheritedData::StyleRareNonInheritedData(const StyleRareNonInherited
, m_runningTransformAnimationOnCompositor(o.m_runningTransformAnimationOnCompositor)
, m_runningFilterAnimationOnCompositor(o.m_runningFilterAnimationOnCompositor)
, m_hasAspectRatio(o.m_hasAspectRatio)
- , m_effectiveBlendMode(o.m_effectiveBlendMode)
, m_touchAction(o.m_touchAction)
, m_objectFit(o.m_objectFit)
- , m_isolation(o.m_isolation)
, m_justifyItems(o.m_justifyItems)
, m_justifyItemsOverflowAlignment(o.m_justifyItemsOverflowAlignment)
, m_justifyItemsPositionType(o.m_justifyItemsPositionType)
@@ -192,11 +188,9 @@ bool StyleRareNonInheritedData::operator==(const StyleRareNonInheritedData& o) c
&& m_hasCurrentOpacityAnimation == o.m_hasCurrentOpacityAnimation
&& m_hasCurrentTransformAnimation == o.m_hasCurrentTransformAnimation
&& m_hasCurrentFilterAnimation == o.m_hasCurrentFilterAnimation
- && m_effectiveBlendMode == o.m_effectiveBlendMode
&& m_hasAspectRatio == o.m_hasAspectRatio
&& m_touchAction == o.m_touchAction
&& m_objectFit == o.m_objectFit
- && m_isolation == o.m_isolation
&& m_justifyItems == o.m_justifyItems
&& m_justifyItemsOverflowAlignment == o.m_justifyItemsOverflowAlignment
&& m_justifyItemsPositionType == o.m_justifyItemsPositionType
« 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