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

Unified Diff: Source/core/layout/LayerStackingNode.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
« no previous file with comments | « Source/core/layout/LayerStackingNode.h ('k') | Source/core/layout/LayoutBlock.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/LayerStackingNode.cpp
diff --git a/Source/core/layout/LayerStackingNode.cpp b/Source/core/layout/LayerStackingNode.cpp
index 91af2d31a537e8e732a82199f7cb0400982f8a5f..c7f68e1b4f8b4bf67a0182465635fba7798658a1 100644
--- a/Source/core/layout/LayerStackingNode.cpp
+++ b/Source/core/layout/LayerStackingNode.cpp
@@ -72,7 +72,7 @@ LayerStackingNode::LayerStackingNode(Layer* layer)
LayerStackingNode::~LayerStackingNode()
{
#if ENABLE(ASSERT)
- if (!renderer()->documentBeingDestroyed()) {
+ if (!layoutObject()->documentBeingDestroyed()) {
ASSERT(!isInStackingParentZOrderLists());
ASSERT(!isInStackingParentNormalFlowList());
@@ -90,8 +90,8 @@ static inline bool compareZIndex(LayerStackingNode* first, LayerStackingNode* se
LayerCompositor* LayerStackingNode::compositor() const
{
- ASSERT(renderer()->view());
- return renderer()->view()->compositor();
+ ASSERT(layoutObject()->view());
+ return layoutObject()->view()->compositor();
}
void LayerStackingNode::dirtyZOrderLists()
@@ -109,7 +109,7 @@ void LayerStackingNode::dirtyZOrderLists()
m_negZOrderList->clear();
m_zOrderListsDirty = true;
- if (!renderer()->documentBeingDestroyed())
+ if (!layoutObject()->documentBeingDestroyed())
compositor()->setNeedsCompositingUpdate(CompositingUpdateRebuildTree);
}
@@ -131,7 +131,7 @@ void LayerStackingNode::dirtyNormalFlowList()
m_normalFlowList->clear();
m_normalFlowListDirty = true;
- if (!renderer()->documentBeingDestroyed())
+ if (!layoutObject()->documentBeingDestroyed())
compositor()->setNeedsCompositingUpdate(CompositingUpdateRebuildTree);
}
@@ -155,7 +155,7 @@ void LayerStackingNode::rebuildZOrderLists()
// Append layers for top layer elements after normal layer collection, to ensure they are on top regardless of z-indexes.
// The renderers of top layer elements are children of the view, sorted in top layer stacking order.
if (layer()->isRootLayer()) {
- LayoutView* view = renderer()->view();
+ LayoutView* view = layoutObject()->view();
for (LayoutObject* child = view->firstChild(); child; child = child->nextSibling()) {
Element* childElement = (child->node() && child->node()->isElementNode()) ? toElement(child->node()) : 0;
if (childElement && childElement->isInTopLayer()) {
@@ -296,7 +296,7 @@ void LayerStackingNode::updateStackingNodesAfterStyleChange(const LayoutStyle* o
// 2.1 defines the term "normal flow".
bool LayerStackingNode::shouldBeNormalFlowOnly() const
{
- return !isStackingContext() && !renderer()->isPositioned();
+ return !isStackingContext() && !layoutObject()->isPositioned();
}
void LayerStackingNode::updateIsNormalFlowOnly()
@@ -321,9 +321,9 @@ LayerStackingNode* LayerStackingNode::ancestorStackingContextNode() const
return 0;
}
-LayoutBoxModelObject* LayerStackingNode::renderer() const
+LayoutBoxModelObject* LayerStackingNode::layoutObject() const
{
- return m_layer->renderer();
+ return m_layer->layoutObject();
}
} // namespace blink
« no previous file with comments | « Source/core/layout/LayerStackingNode.h ('k') | Source/core/layout/LayoutBlock.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698