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

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

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_inline_node.h
diff --git a/third_party/WebKit/Source/core/layout/ng/ng_inline_node.h b/third_party/WebKit/Source/core/layout/ng/ng_inline_node.h
index 6dad8b6dd2bf57646f4b4387d325fae9c3704283..d0b6c0dae60b80e499c3411f3f3e66964942ba6f 100644
--- a/third_party/WebKit/Source/core/layout/ng/ng_inline_node.h
+++ b/third_party/WebKit/Source/core/layout/ng/ng_inline_node.h
@@ -100,7 +100,7 @@ class NGLayoutInlineItem {
unsigned StartOffset() const { return start_offset_; }
unsigned EndOffset() const { return end_offset_; }
TextDirection Direction() const {
- return bidi_level_ & 1 ? TextDirection::Rtl : TextDirection::Ltr;
+ return bidi_level_ & 1 ? TextDirection::kRtl : TextDirection::kLtr;
}
UBiDiLevel BidiLevel() const { return bidi_level_; }
UScriptCode Script() const { return script_; }

Powered by Google App Engine
This is Rietveld 408576698