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

Unified Diff: third_party/WebKit/Source/core/layout/ng/ng_text.h

Issue 2230803005: [LayoutNG] Add writing-mode and direction to NGFragmentBase (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase w/HEAD Created 4 years, 4 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 | « third_party/WebKit/Source/core/layout/ng/ng_fragment_base.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/layout/ng/ng_text.h
diff --git a/third_party/WebKit/Source/core/layout/ng/ng_text.h b/third_party/WebKit/Source/core/layout/ng/ng_text.h
index 111722d62eca54c92ee49690e27ae1a0631a1655..117bae95f24cbe25ebd8be50802f87fe81d093f3 100644
--- a/third_party/WebKit/Source/core/layout/ng/ng_text.h
+++ b/third_party/WebKit/Source/core/layout/ng/ng_text.h
@@ -17,10 +17,16 @@ class CORE_EXPORT NGText final : public NGFragmentBase {
NGText(LayoutUnit inlineSize,
LayoutUnit blockSize,
LayoutUnit inlineOverflow,
- LayoutUnit blockOverflow)
- : NGFragmentBase(inlineSize, blockSize, inlineOverflow, blockOverflow) {
- m_isText = true;
- }
+ LayoutUnit blockOverflow,
+ NGWritingMode writingMode,
+ NGDirection direction)
+ : NGFragmentBase(inlineSize,
+ blockSize,
+ inlineOverflow,
+ blockOverflow,
+ writingMode,
+ direction,
+ FragmentText) {}
const String text() const { return String(); }
« no previous file with comments | « third_party/WebKit/Source/core/layout/ng/ng_fragment_base.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698