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

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

Issue 940373003: Rename RenderText to LayoutText (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Merge w/HEAD again 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
Index: Source/core/layout/LayoutObject.h
diff --git a/Source/core/layout/LayoutObject.h b/Source/core/layout/LayoutObject.h
index 2a735ec165bdc0d319b4a26b7432327d5bf83649..5f4c30d701da3774bbd63ee736453507d0778d2d 100644
--- a/Source/core/layout/LayoutObject.h
+++ b/Source/core/layout/LayoutObject.h
@@ -505,7 +505,7 @@ public:
{
// This function is kept in sync with anonymous block creation conditions in
// RenderBlock::createAnonymousBlock(). This includes creating an anonymous
- // RenderBlock having a BLOCK or BOX display. Other classes such as RenderTextFragment
+ // RenderBlock having a BLOCK or BOX display. Other classes such as LayoutTextFragment
// are not RenderBlocks and will return false. See https://bugs.webkit.org/show_bug.cgi?id=56709.
return isAnonymous() && (style()->display() == BLOCK || style()->display() == BOX) && style()->styleType() == NOPSEUDO && isRenderBlock() && !isListMarker() && !isLayoutFlowThread() && !isLayoutMultiColumnSet()
&& !isRenderFullScreen()
@@ -1194,7 +1194,7 @@ protected:
virtual PaintInvalidationReason invalidatePaintIfNeeded(const PaintInvalidationState&, const LayoutBoxModelObject& paintInvalidationContainer);
// When this object is invalidated for paint, this method is called to invalidate any DisplayItemClients
- // owned by this object, including the object itself, RenderText/RenderInline line boxes, scrollbars, etc.,
+ // owned by this object, including the object itself, LayoutText/RenderInline line boxes, scrollbars, etc.,
// not including children which will be invalidated normally during invalidateTreeIfNeeded().
virtual void invalidateDisplayItemClients(DisplayItemList*) const;

Powered by Google App Engine
This is Rietveld 408576698