| Index: third_party/WebKit/Source/core/layout/PaintInvalidationState.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/PaintInvalidationState.cpp b/third_party/WebKit/Source/core/layout/PaintInvalidationState.cpp
|
| index 5153efde1d23c2c9080d506d21f49853ef941b9e..f79077be8766fe4588d46ac9b7e41660482ba08b 100644
|
| --- a/third_party/WebKit/Source/core/layout/PaintInvalidationState.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/PaintInvalidationState.cpp
|
| @@ -409,8 +409,7 @@ static FloatPoint slowLocalToAncestorPoint(const LayoutObject& object,
|
| return result;
|
| }
|
|
|
| -LayoutPoint
|
| -PaintInvalidationState::computePositionFromPaintInvalidationBacking() const {
|
| +LayoutPoint PaintInvalidationState::computeLocationInBacking() const {
|
| #if ENABLE(ASSERT)
|
| DCHECK(!m_didUpdateForChildren);
|
| #endif
|
| @@ -422,7 +421,9 @@ PaintInvalidationState::computePositionFromPaintInvalidationBacking() const {
|
| point = m_svgTransform.mapPoint(point);
|
| point += FloatPoint(m_paintOffset);
|
| #ifdef CHECK_FAST_PATH_SLOW_PATH_EQUALITY
|
| - DCHECK(point == slowLocalOriginToAncestorPoint(m_currentObject, m_paintInvalidationContainer, FloatPoint());
|
| + DCHECK(point ==
|
| + slowLocalOriginToAncestorPoint(
|
| + m_currentObject, m_paintInvalidationContainer, FloatPoint()));
|
| #endif
|
| } else {
|
| point = slowLocalToAncestorPoint(
|
|
|