| Index: Source/core/rendering/PaintInvalidationState.cpp
|
| diff --git a/Source/core/rendering/PaintInvalidationState.cpp b/Source/core/rendering/PaintInvalidationState.cpp
|
| index db3748f6d5fc80dee86247d74f3c9eb0047bfce5..94e556741d9fa75797b1f5e3162a49adb8d64aff 100644
|
| --- a/Source/core/rendering/PaintInvalidationState.cpp
|
| +++ b/Source/core/rendering/PaintInvalidationState.cpp
|
| @@ -62,7 +62,7 @@ PaintInvalidationState::PaintInvalidationState(const PaintInvalidationState& nex
|
| }
|
|
|
| if (renderer.isOutOfFlowPositioned() && !fixed) {
|
| - if (RenderObject* container = renderer.container()) {
|
| + if (LayoutObject* container = renderer.container()) {
|
| if (container->style()->hasInFlowPosition() && container->isRenderInline())
|
| m_paintOffset += toRenderInline(container)->offsetForInFlowPositionedInline(toRenderBox(renderer));
|
| }
|
| @@ -114,7 +114,7 @@ void PaintInvalidationState::addClipRectRelativeToPaintOffset(const LayoutSize&
|
| }
|
| }
|
|
|
| -void PaintInvalidationState::applyClipIfNeeded(const RenderObject& renderer)
|
| +void PaintInvalidationState::applyClipIfNeeded(const LayoutObject& renderer)
|
| {
|
| if (!renderer.hasOverflowClip())
|
| return;
|
|
|