| 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);
|
|
|
|
|