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

Unified Diff: third_party/WebKit/Source/platform/text/BidiCharacterRun.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/platform/text/BidiCharacterRun.h
diff --git a/third_party/WebKit/Source/platform/text/BidiCharacterRun.h b/third_party/WebKit/Source/platform/text/BidiCharacterRun.h
index 8fb7162e20b36b89a02f1375fc5bde10169f56c3..95306b4327bf1c1965bc44c7be38e17b8536ce99 100644
--- a/third_party/WebKit/Source/platform/text/BidiCharacterRun.h
+++ b/third_party/WebKit/Source/platform/text/BidiCharacterRun.h
@@ -74,7 +74,7 @@ struct BidiCharacterRun {
return m_override || visuallyOrdered;
}
TextDirection direction() const {
- return reversed(false) ? TextDirection::Rtl : TextDirection::Ltr;
+ return reversed(false) ? TextDirection::kRtl : TextDirection::kLtr;
}
BidiCharacterRun* next() const { return m_next; }

Powered by Google App Engine
This is Rietveld 408576698