| Index: third_party/WebKit/Source/core/layout/compositing/PaintLayerCompositor.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/compositing/PaintLayerCompositor.cpp b/third_party/WebKit/Source/core/layout/compositing/PaintLayerCompositor.cpp
|
| index d1299046db37feea9f2993daa73a95884c59dff8..0659a8aefe18c4709cdcdd3f79a711821c7f04bf 100644
|
| --- a/third_party/WebKit/Source/core/layout/compositing/PaintLayerCompositor.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/compositing/PaintLayerCompositor.cpp
|
| @@ -147,7 +147,7 @@ bool PaintLayerCompositor::rootShouldAlwaysComposite() const {
|
| void PaintLayerCompositor::updateAcceleratedCompositingSettings() {
|
| m_compositingReasonFinder.updateTriggers();
|
| m_hasAcceleratedCompositing =
|
| - m_layoutView.document().settings()->acceleratedCompositingEnabled();
|
| + m_layoutView.document().settings()->GetAcceleratedCompositingEnabled();
|
| m_rootShouldAlwaysCompositeDirty = true;
|
| if (m_rootLayerAttachment != RootLayerUnattached)
|
| rootLayer()->setNeedsCompositingInputsUpdate();
|
| @@ -156,7 +156,7 @@ void PaintLayerCompositor::updateAcceleratedCompositingSettings() {
|
| bool PaintLayerCompositor::preferCompositingToLCDTextEnabled() const {
|
| return m_layoutView.document()
|
| .settings()
|
| - ->preferCompositingToLCDTextEnabled();
|
| + ->GetPreferCompositingToLCDTextEnabled();
|
| }
|
|
|
| static LayoutVideo* findFullscreenVideoLayoutObject(Document& document) {
|
| @@ -949,7 +949,7 @@ Scrollbar* PaintLayerCompositor::graphicsLayerToScrollbar(
|
|
|
| bool PaintLayerCompositor::supportsFixedRootBackgroundCompositing() const {
|
| if (Settings* settings = m_layoutView.document().settings())
|
| - return settings->preferCompositingToLCDTextEnabled();
|
| + return settings->GetPreferCompositingToLCDTextEnabled();
|
| return false;
|
| }
|
|
|
|
|