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

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

Issue 2589143003: Add 'get' prefix for Settings.in generated code. (Closed)
Patch Set: Capitalize the prefix. Created 4 years 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/PaintPropertyTreeBuilder.cpp
diff --git a/third_party/WebKit/Source/core/paint/PaintPropertyTreeBuilder.cpp b/third_party/WebKit/Source/core/paint/PaintPropertyTreeBuilder.cpp
index cb0862c9be5a8166ea29b843cbbb9601fbfd0f82..7105431a35765070c9213f0a369a68d11fa26563 100644
--- a/third_party/WebKit/Source/core/paint/PaintPropertyTreeBuilder.cpp
+++ b/third_party/WebKit/Source/core/paint/PaintPropertyTreeBuilder.cpp
@@ -155,7 +155,7 @@ void PaintPropertyTreeBuilder::updateProperties(
frameView.userInputScrollable(VerticalScrollbar);
MainThreadScrollingReasons reasons = 0;
- if (!frameView.frame().settings()->threadedScrollingEnabled())
+ if (!frameView.frame().settings()->GetThreadedScrollingEnabled())
reasons |= MainThreadScrollingReason::kThreadedScrollingDisabled;
if (frameView.hasBackgroundAttachmentFixedObjects()) {
reasons |=
@@ -691,7 +691,7 @@ void PaintPropertyTreeBuilder::updateSvgLocalToBorderBoxTransform(
MainThreadScrollingReasons mainScrollingReasons(const LayoutObject& object) {
MainThreadScrollingReasons reasons = 0;
- if (!object.document().settings()->threadedScrollingEnabled())
+ if (!object.document().settings()->GetThreadedScrollingEnabled())
reasons |= MainThreadScrollingReason::kThreadedScrollingDisabled;
// Checking for descendants in the layout tree has two downsides:
// 1) There can be more descendants in layout order than in paint order (e.g.,

Powered by Google App Engine
This is Rietveld 408576698