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

Unified Diff: sky/engine/core/rendering/PaintPhase.h

Issue 766943003: Remove uses of PaintBehaviorFlattenCompositingLayers (Closed) Base URL: https://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 side-by-side diff with in-line comments
Download patch
Index: sky/engine/core/rendering/PaintPhase.h
diff --git a/sky/engine/core/rendering/PaintPhase.h b/sky/engine/core/rendering/PaintPhase.h
index d82f985c4a3e0300390f4a3f71b9fe11fce77f04..39937730f1e5b6e532c95e20657e69f22add39d6 100644
--- a/sky/engine/core/rendering/PaintPhase.h
+++ b/sky/engine/core/rendering/PaintPhase.h
@@ -56,11 +56,9 @@ enum PaintBehaviorFlags {
PaintBehaviorNormal = 0,
PaintBehaviorSelectionOnly = 1 << 0,
PaintBehaviorForceBlackText = 1 << 1,
- // FIXME(sky): This is unused. Remove it.
- PaintBehaviorFlattenCompositingLayers = 1 << 2,
- PaintBehaviorRenderingSVGMask = 1 << 3,
- PaintBehaviorSkipRootBackground = 1 << 4,
- PaintBehaviorRootBackgroundOnly = 1 << 5
+ PaintBehaviorRenderingSVGMask = 1 << 2,
+ PaintBehaviorSkipRootBackground = 1 << 3,
+ PaintBehaviorRootBackgroundOnly = 1 << 4
};
typedef unsigned PaintBehavior;

Powered by Google App Engine
This is Rietveld 408576698