Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(793)

Unified Diff: Source/core/rendering/PaintInvalidationState.cpp

Issue 899163003: Move rendering/RenderObject to layout/LayoutObject. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/rendering/PaintInvalidationState.h ('k') | Source/core/rendering/RenderBR.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « Source/core/rendering/PaintInvalidationState.h ('k') | Source/core/rendering/RenderBR.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698