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

Unified Diff: Source/core/layout/TextAutosizer.cpp

Issue 931423003: Rename rendering/RenderList* to layout/LayoutList* (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove spurious LayoutLayerModelObject reference 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/TextAutosizer.h ('k') | Source/core/layout/line/BreakingContextInlineHeaders.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/TextAutosizer.cpp
diff --git a/Source/core/layout/TextAutosizer.cpp b/Source/core/layout/TextAutosizer.cpp
index f92c31f0a5948c3236c3b167d99a1f7a63689ad6..52bd375642359b7432d4dbfe72334c2f27446647 100644
--- a/Source/core/layout/TextAutosizer.cpp
+++ b/Source/core/layout/TextAutosizer.cpp
@@ -38,12 +38,12 @@
#include "core/frame/PinchViewport.h"
#include "core/frame/Settings.h"
#include "core/html/HTMLTextAreaElement.h"
+#include "core/layout/LayoutListItem.h"
+#include "core/layout/LayoutListMarker.h"
#include "core/layout/LayoutTableCell.h"
#include "core/layout/line/InlineIterator.h"
#include "core/page/Page.h"
#include "core/rendering/RenderBlock.h"
-#include "core/rendering/RenderListItem.h"
-#include "core/rendering/RenderListMarker.h"
#include "core/rendering/RenderView.h"
#ifdef AUTOSIZING_DOM_DEBUG_INFO
@@ -372,7 +372,7 @@ void TextAutosizer::beginLayout(RenderBlock* block)
inflate(block);
}
-void TextAutosizer::inflateListItem(RenderListItem* listItem, RenderListMarker* listItemMarker)
+void TextAutosizer::inflateListItem(LayoutListItem* listItem, LayoutListMarker* listItemMarker)
{
if (!shouldHandleLayout())
return;
@@ -943,7 +943,7 @@ const RenderBlock* TextAutosizer::deepestBlockContainingAllText(const RenderBloc
const LayoutObject* TextAutosizer::findTextLeaf(const LayoutObject* parent, size_t& depth, TextLeafSearch firstOrLast) const
{
// List items are treated as text due to the marker.
- // The actual renderer for the marker (RenderListMarker) may not be in the tree yet since it is added during layout.
+ // The actual renderer for the marker (LayoutListMarker) may not be in the tree yet since it is added during layout.
if (parent->isListItem())
return parent;
« no previous file with comments | « Source/core/layout/TextAutosizer.h ('k') | Source/core/layout/line/BreakingContextInlineHeaders.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698