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