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

Unified Diff: Source/core/layout/line/TrailingObjects.h

Issue 899163003: Move rendering/RenderObject to layout/LayoutObject. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
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/line/RootInlineBox.cpp ('k') | Source/core/layout/svg/line/SVGInlineFlowBox.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/line/TrailingObjects.h
diff --git a/Source/core/layout/line/TrailingObjects.h b/Source/core/layout/line/TrailingObjects.h
index 9ff25a701e0e4953a218231bfe1ea4909dfa6578..89fb2f30bdac04d7f0d75722e26dc0319a839486 100644
--- a/Source/core/layout/line/TrailingObjects.h
+++ b/Source/core/layout/line/TrailingObjects.h
@@ -29,7 +29,7 @@
namespace blink {
class InlineIterator;
-class RenderObject;
+class LayoutObject;
class RenderText;
struct BidiRun;
@@ -74,7 +74,7 @@ public:
m_objects.resize(0);
}
- void appendObjectIfNeeded(RenderObject* object)
+ void appendObjectIfNeeded(LayoutObject* object)
{
if (m_whitespace)
m_objects.append(object);
@@ -86,7 +86,7 @@ public:
private:
RenderText* m_whitespace;
- Vector<RenderObject*, 4> m_objects;
+ Vector<LayoutObject*, 4> m_objects;
};
}
« no previous file with comments | « Source/core/layout/line/RootInlineBox.cpp ('k') | Source/core/layout/svg/line/SVGInlineFlowBox.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698