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

Unified Diff: third_party/WebKit/Source/core/layout/ng/ng_bidi_paragraph.cc

Issue 2614883007: Change computed style enums to be prefixed with 'k'. (Closed)
Patch Set: Rebase on ToT. Created 3 years, 11 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
Index: third_party/WebKit/Source/core/layout/ng/ng_bidi_paragraph.cc
diff --git a/third_party/WebKit/Source/core/layout/ng/ng_bidi_paragraph.cc b/third_party/WebKit/Source/core/layout/ng/ng_bidi_paragraph.cc
index 44ef5418bc208cc98da0e696e18ce511030ebf00..4f81ef3a245e65b5d4c048487ccc9b8613340f0d 100644
--- a/third_party/WebKit/Source/core/layout/ng/ng_bidi_paragraph.cc
+++ b/third_party/WebKit/Source/core/layout/ng/ng_bidi_paragraph.cc
@@ -23,8 +23,8 @@ bool NGBidiParagraph::SetParagraph(const String& text,
ubidi_, text.characters16(), text.length(),
block_style->unicodeBidi() == Plaintext
? UBIDI_DEFAULT_LTR
- : (block_style->direction() == TextDirection::Rtl ? UBIDI_RTL
- : UBIDI_LTR),
+ : (block_style->direction() == TextDirection::kRtl ? UBIDI_RTL
+ : UBIDI_LTR),
nullptr, &error);
if (U_FAILURE(error)) {
NOTREACHED();

Powered by Google App Engine
This is Rietveld 408576698