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

Unified Diff: sky/engine/core/rendering/style/RenderStyle.h

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/RenderStyle.h
diff --git a/sky/engine/core/rendering/style/RenderStyle.h b/sky/engine/core/rendering/style/RenderStyle.h
index e490e4d86a7863945cfc5afebec105a0e5719491..9cb4c58d8f9bf015c8f811ff6c043d82740f75da 100644
--- a/sky/engine/core/rendering/style/RenderStyle.h
+++ b/sky/engine/core/rendering/style/RenderStyle.h
@@ -795,14 +795,6 @@ public:
const FilterOperations& filter() const { return rareNonInheritedData->m_filter->m_operations; }
bool hasFilter() const { return !rareNonInheritedData->m_filter->m_operations.operations().isEmpty(); }
- WebBlendMode blendMode() const;
- void setBlendMode(WebBlendMode v);
- bool hasBlendMode() const;
-
- EIsolation isolation() const;
- void setIsolation(EIsolation v);
- bool hasIsolation() const;
-
bool shouldPlaceBlockDirectionScrollbarOnLogicalLeft() const { return !isLeftToRightDirection(); }
TouchAction touchAction() const { return static_cast<TouchAction>(rareNonInheritedData->m_touchAction); }
@@ -1379,8 +1371,6 @@ public:
static LineClampValue initialLineClamp() { return LineClampValue(); }
static Color initialTapHighlightColor();
static const FilterOperations& initialFilter() { DEFINE_STATIC_LOCAL(FilterOperations, ops, ()); return ops; }
- static WebBlendMode initialBlendMode() { return WebBlendModeNormal; }
- static EIsolation initialIsolation() { return IsolationAuto; }
Color colorIncludingFallback(int colorProperty) const;

Powered by Google App Engine
This is Rietveld 408576698