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

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

Issue 940373003: Rename RenderText to LayoutText (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/TextAutosizer.cpp ('k') | Source/core/layout/TextRunConstructor.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/TextRunConstructor.h
diff --git a/Source/core/layout/TextRunConstructor.h b/Source/core/layout/TextRunConstructor.h
index e18822470a5eeb2867d8f1e426f0bc7b715301fe..46bad17e7c11f974ba961bae06ae2b04949d9ab4 100644
--- a/Source/core/layout/TextRunConstructor.h
+++ b/Source/core/layout/TextRunConstructor.h
@@ -46,7 +46,7 @@ namespace blink {
class Font;
class LayoutObject;
class LayoutStyle;
-class RenderText;
+class LayoutText;
enum TextRunFlag {
DefaultTextRunFlags = 0,
@@ -58,12 +58,12 @@ typedef unsigned TextRunFlags;
// Direction resolved from string value.
TextRun constructTextRun(LayoutObject* context, const Font&, const String&, const LayoutStyle&, TextRunFlags = DefaultTextRunFlags);
-TextRun constructTextRun(LayoutObject* context, const Font&, const RenderText*, unsigned offset, unsigned length, const LayoutStyle&);
+TextRun constructTextRun(LayoutObject* context, const Font&, const LayoutText*, unsigned offset, unsigned length, const LayoutStyle&);
// Explicit direction.
TextRun constructTextRun(LayoutObject*, const Font&, const String&, const LayoutStyle&, TextDirection, TextRunFlags = DefaultTextRunFlags);
-TextRun constructTextRun(LayoutObject*, const Font&, const RenderText*, const LayoutStyle&, TextDirection);
-TextRun constructTextRun(LayoutObject*, const Font&, const RenderText*, unsigned offset, unsigned length, const LayoutStyle&, TextDirection);
+TextRun constructTextRun(LayoutObject*, const Font&, const LayoutText*, const LayoutStyle&, TextDirection);
+TextRun constructTextRun(LayoutObject*, const Font&, const LayoutText*, unsigned offset, unsigned length, const LayoutStyle&, TextDirection);
TextRun constructTextRun(LayoutObject*, const Font&, const LChar*, int length, const LayoutStyle&, TextDirection);
TextRun constructTextRun(LayoutObject*, const Font&, const UChar*, int length, const LayoutStyle&, TextDirection);
« no previous file with comments | « Source/core/layout/TextAutosizer.cpp ('k') | Source/core/layout/TextRunConstructor.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698