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

Unified Diff: Source/core/layout/LayoutObject.h

Issue 931003002: Move and rename RenderPart to LayoutPart. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
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/layout/Layer.cpp ('k') | Source/core/layout/LayoutObject.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/LayoutObject.h
diff --git a/Source/core/layout/LayoutObject.h b/Source/core/layout/LayoutObject.h
index 4de2448ffde63552648d34a1db1d236c5997830e..5775089e2d2b2ab4523add469374c912aad9e9ba 100644
--- a/Source/core/layout/LayoutObject.h
+++ b/Source/core/layout/LayoutObject.h
@@ -387,7 +387,7 @@ public:
virtual bool isRenderBlockFlow() const { return false; }
virtual bool isLayoutFlowThread() const { return false; }
virtual bool isRenderInline() const { return false; }
- virtual bool isRenderPart() const { return false; }
+ virtual bool isLayoutPart() const { return false; }
bool isDocumentElement() const { return document().documentElement() == m_node; }
// isBody is called from RenderBox::styleWillChange and is thus quite hot.
@@ -621,7 +621,7 @@ public:
return isPseudoElement() ? 0 : node();
}
- // FIXME: Why does RenderPart need this? crbug.com/422457
+ // FIXME: Why does LayoutPart need this? crbug.com/422457
void clearNode() { m_node = nullptr; }
// Returns the styled node that caused the generation of this renderer.
@@ -1097,7 +1097,7 @@ protected:
LayoutObjectRenderInline,
LayoutObjectLayoutMultiColumnSet,
LayoutObjectLayoutMultiColumnSpannerPlaceholder,
- LayoutObjectRenderPart,
+ LayoutObjectLayoutPart,
LayoutObjectLayoutRegion,
LayoutObjectRenderScrollbarPart,
LayoutObjectRenderView,
« no previous file with comments | « Source/core/layout/Layer.cpp ('k') | Source/core/layout/LayoutObject.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698