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

Unified Diff: third_party/WebKit/Source/core/paint/PaintInvalidator.cpp

Issue 2258523006: Convert Settings::rootLayerScrolls to RuntimeEnabledFeatures (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add RAII-style helper to toggle REF. Rebase. Created 4 years, 4 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
Index: third_party/WebKit/Source/core/paint/PaintInvalidator.cpp
diff --git a/third_party/WebKit/Source/core/paint/PaintInvalidator.cpp b/third_party/WebKit/Source/core/paint/PaintInvalidator.cpp
index b4840efa133860932ac436c58447e10f0ee7bac2..6e3efb5cda08a3f107c7093763000d6e2d586eff 100644
--- a/third_party/WebKit/Source/core/paint/PaintInvalidator.cpp
+++ b/third_party/WebKit/Source/core/paint/PaintInvalidator.cpp
@@ -178,7 +178,7 @@ void PaintInvalidator::invalidatePaintIfNeeded(FrameView& frameView, PaintInvali
context.paintInvalidationContainer = context.paintInvalidationContainerForStackedContents = &layoutView->containerForPaintInvalidation();
context.paintingLayer = layoutView->layer();
- if (!frameView.frame().settings() || !frameView.frame().settings()->rootLayerScrolls())
+ if (!RuntimeEnabledFeatures::rootLayerScrollingEnabled())
frameView.invalidatePaintOfScrollControlsIfNeeded(context);
if (frameView.frame().selection().isCaretBoundsDirty())

Powered by Google App Engine
This is Rietveld 408576698