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

Unified Diff: sky/engine/platform/graphics/CompositingReasons.h

Issue 709503003: Remove RenderObject::isVideo (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/platform/graphics/CompositingReasons.h
diff --git a/sky/engine/platform/graphics/CompositingReasons.h b/sky/engine/platform/graphics/CompositingReasons.h
index ed542790d27b7b6ef16f9b2c975a4f8ac312039c..c09cd26020b2942b6adbdf115268b3cebe439269 100644
--- a/sky/engine/platform/graphics/CompositingReasons.h
+++ b/sky/engine/platform/graphics/CompositingReasons.h
@@ -27,7 +27,6 @@ const uint64_t CompositingReasonTransitionProperty = UINT6
const uint64_t CompositingReasonOverflowScrollingTouch = UINT64_C(1) << 9;
const uint64_t CompositingReasonOverflowScrollingParent = UINT64_C(1) << 10;
const uint64_t CompositingReasonOutOfFlowClipping = UINT64_C(1) << 11;
-const uint64_t CompositingReasonVideoOverlay = UINT64_C(1) << 12;
const uint64_t CompositingReasonWillChangeCompositingHint = UINT64_C(1) << 13;
// Overlap reasons that require knowing what's behind you in paint-order before knowing the answer
@@ -93,7 +92,6 @@ const uint64_t CompositingReasonComboAllDirectReasons =
| CompositingReasonOverflowScrollingTouch
| CompositingReasonOverflowScrollingParent
| CompositingReasonOutOfFlowClipping
- | CompositingReasonVideoOverlay
| CompositingReasonWillChangeCompositingHint;
const uint64_t CompositingReasonComboAllDirectStyleDeterminedReasons =

Powered by Google App Engine
This is Rietveld 408576698