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

Unified Diff: Source/core/rendering/compositing/CompositingTriggers.h

Issue 244193002: Enable universal accelerated overflow scroll (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Update test expectations for crashing test. Created 6 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/rendering/compositing/CompositingReasonFinder.cpp ('k') | Source/core/testing/Internals.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/compositing/CompositingTriggers.h
diff --git a/Source/core/rendering/compositing/CompositingTriggers.h b/Source/core/rendering/compositing/CompositingTriggers.h
index f3694c917e91d52901bcfa64051bfba8affad9b9..7b788f5ef3e32d86b3bb0f258120b5314d9e03c6 100644
--- a/Source/core/rendering/compositing/CompositingTriggers.h
+++ b/Source/core/rendering/compositing/CompositingTriggers.h
@@ -33,10 +33,14 @@ enum CompositingTrigger {
FilterTrigger = 1 << 5,
ScrollableInnerFrameTrigger = 1 << 6,
GPURasterizationTrigger = 1 << 7,
+
// FIXME: This is a temporary trigger for enabling the old, opt-in path for
// accelerated overflow scroll. It should be removed once the "universal"
// path is ready (crbug.com/254111).
+ // Currently there is no way to enable this trigger, which means we can
+ // remove it once we're confident in the current codepaths.
LegacyOverflowScrollTrigger = 1 << 8,
+
OverflowScrollTrigger = 1 << 9,
ViewportConstrainedPositionedTrigger = 1 << 10,
AllCompositingTriggers = 0xFFFFFFFF,
« no previous file with comments | « Source/core/rendering/compositing/CompositingReasonFinder.cpp ('k') | Source/core/testing/Internals.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698