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

Unified Diff: third_party/WebKit/Source/core/layout/line/InlineTextBox.h

Issue 1433253003: [Line Layout API] Convert AbstractInlineTextBox to new line layout API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove PaintShim usage in AXInlineTextBox, remove nullptr definitions (split into other CL), addres… Created 5 years 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: third_party/WebKit/Source/core/layout/line/InlineTextBox.h
diff --git a/third_party/WebKit/Source/core/layout/line/InlineTextBox.h b/third_party/WebKit/Source/core/layout/line/InlineTextBox.h
index 0ddc244f75466b235601b13293c8d1f94d7b8fb2..b695014664bfc1b312a41009cd99db7a65253c14 100644
--- a/third_party/WebKit/Source/core/layout/line/InlineTextBox.h
+++ b/third_party/WebKit/Source/core/layout/line/InlineTextBox.h
@@ -51,7 +51,9 @@ public:
setIsText(true);
}
+private:
LayoutText& layoutObject() const { return toLayoutText(InlineBox::layoutObject()); }
leviw_travelin_and_unemployed 2015/12/07 18:50:27 If this can be removed, can we take it out in this
+public:
LineLayoutText lineLayoutItem() const { return LineLayoutText(InlineBox::lineLayoutItem()); }
void destroy() final;

Powered by Google App Engine
This is Rietveld 408576698