| Index: third_party/WebKit/Source/core/paint/PaintLayerPainter.cpp
|
| diff --git a/third_party/WebKit/Source/core/paint/PaintLayerPainter.cpp b/third_party/WebKit/Source/core/paint/PaintLayerPainter.cpp
|
| index 651e258c74398dd16bf5896c45170cdd859d26d5..aadab753778f42c2baff9892774d049ea66e2da3 100644
|
| --- a/third_party/WebKit/Source/core/paint/PaintLayerPainter.cpp
|
| +++ b/third_party/WebKit/Source/core/paint/PaintLayerPainter.cpp
|
| @@ -420,8 +420,8 @@ PaintLayerPainter::PaintResult PaintLayerPainter::paintLayerContents(
|
|
|
| Optional<ScopedPaintChunkProperties> scopedPaintChunkProperties;
|
| if (RuntimeEnabledFeatures::slimmingPaintV2Enabled()) {
|
| - const ObjectPaintProperties* objectPaintProperties =
|
| - m_paintLayer.layoutObject()->objectPaintProperties();
|
| + const auto* objectPaintProperties =
|
| + m_paintLayer.layoutObject()->paintProperties();
|
| ASSERT(objectPaintProperties &&
|
| objectPaintProperties->localBorderBoxProperties());
|
| PaintChunkProperties properties(
|
| @@ -866,8 +866,8 @@ void PaintLayerPainter::paintFragmentWithPhase(
|
| Optional<ScrollRecorder> scrollRecorder;
|
| LayoutPoint paintOffset = -m_paintLayer.layoutBoxLocation();
|
| if (RuntimeEnabledFeatures::slimmingPaintV2Enabled()) {
|
| - const ObjectPaintProperties* objectPaintProperties =
|
| - m_paintLayer.layoutObject()->objectPaintProperties();
|
| + const auto* objectPaintProperties =
|
| + m_paintLayer.layoutObject()->paintProperties();
|
| ASSERT(objectPaintProperties &&
|
| objectPaintProperties->localBorderBoxProperties());
|
| paintOffset +=
|
|
|