Index: third_party/WebKit/Source/core/layout/LayoutObject.cpp |
diff --git a/third_party/WebKit/Source/core/layout/LayoutObject.cpp b/third_party/WebKit/Source/core/layout/LayoutObject.cpp |
index 66181526573775c15dd8406d8fdccdbb10fc8c3f..7fa07084bffd4938794886f0f2bcbe730cd38191 100644 |
--- a/third_party/WebKit/Source/core/layout/LayoutObject.cpp |
+++ b/third_party/WebKit/Source/core/layout/LayoutObject.cpp |
@@ -3437,9 +3437,9 @@ void LayoutObject::setIsSlowRepaintObject(bool isSlowRepaintObject) |
return; |
m_bitfields.setIsSlowRepaintObject(isSlowRepaintObject); |
if (isSlowRepaintObject) |
- frameView()->addSlowRepaintObject(); |
+ frameView()->addBackgroundAttachmentFixedObject(this); |
else |
- frameView()->removeSlowRepaintObject(); |
+ frameView()->removeBackgroundAttachmentFixedObject(this); |
} |
} // namespace blink |