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

Unified Diff: Source/core/editing/iterators/FullyClippedStateStack.cpp

Issue 977113003: Rename renderer() to layoutObject(). (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 9 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
Index: Source/core/editing/iterators/FullyClippedStateStack.cpp
diff --git a/Source/core/editing/iterators/FullyClippedStateStack.cpp b/Source/core/editing/iterators/FullyClippedStateStack.cpp
index 4d187e160e48f451451eac0e282089c544ec89f9..e54f8bd8752babf08a2c471ae014bcbc70c7ece3 100644
--- a/Source/core/editing/iterators/FullyClippedStateStack.cpp
+++ b/Source/core/editing/iterators/FullyClippedStateStack.cpp
@@ -24,7 +24,7 @@ static unsigned depthCrossingShadowBoundaries(Node* node)
static inline bool fullyClipsContents(Node* node)
{
- LayoutObject* renderer = node->renderer();
+ LayoutObject* renderer = node->layoutObject();
if (!renderer || !renderer->isBox() || !renderer->hasOverflowClip())
return false;
return toLayoutBox(renderer)->size().isEmpty();
@@ -32,7 +32,7 @@ static inline bool fullyClipsContents(Node* node)
static inline bool ignoresContainerClip(Node* node)
{
- LayoutObject* renderer = node->renderer();
+ LayoutObject* renderer = node->layoutObject();
if (!renderer || renderer->isText())
return false;
return renderer->style()->hasOutOfFlowPosition();
« no previous file with comments | « Source/core/editing/htmlediting.cpp ('k') | Source/core/editing/iterators/SimplifiedBackwardsTextIterator.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698