| 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.,
|
|
|