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

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

Issue 2589143003: Add 'get' prefix for Settings.in generated code. (Closed)
Patch Set: Only get prefix and no capitalization. Created 3 years, 11 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/PaintPropertyTreeBuilder.cpp
diff --git a/third_party/WebKit/Source/core/paint/PaintPropertyTreeBuilder.cpp b/third_party/WebKit/Source/core/paint/PaintPropertyTreeBuilder.cpp
index d49e0388828d5b037d8eb5184e5a69d345ddb391..cf0c8f79c18eed0643bdad1cc720c98cac226122 100644
--- a/third_party/WebKit/Source/core/paint/PaintPropertyTreeBuilder.cpp
+++ b/third_party/WebKit/Source/core/paint/PaintPropertyTreeBuilder.cpp
@@ -157,7 +157,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 |=
@@ -737,7 +737,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