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

Unified Diff: chrome/browser/flag_descriptions.cc

Issue 2853523002: [rendertext,i18n] Added flag to force RTL rendering (Closed)
Patch Set: Corrected ordering and text, added cached look-ups Created 3 years, 8 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: chrome/browser/flag_descriptions.cc
diff --git a/chrome/browser/flag_descriptions.cc b/chrome/browser/flag_descriptions.cc
index 0d952353bfd79c551530e55f5f021f6752df96a3..23e6900dfb139d3e7eb52958105e97c6d527f1c6 100644
--- a/chrome/browser/flag_descriptions.cc
+++ b/chrome/browser/flag_descriptions.cc
@@ -1602,9 +1602,16 @@ const char kForceUiDirectionDescription[] =
"Explicitly force the UI to left-to-right (LTR) or right-to-left (RTL) "
"mode, overriding the default direction of the UI language.";
-const char kForceUiDirectionLtr[] = "Left-to-right";
+const char kForceTextDirectionName[] = "Force text direction";
-const char kForceUiDirectionRtl[] = "Right-to-left";
+const char kForceTextDirectionDescription[] =
+ "Explicitly force the per-character directionality of UI text to "
+ "left-to-right (LTR) or right-to-left (RTL) mode, overriding the "
+ "default direction of the character language.";
+
+const char kForceDirectionLtr[] = "Left-to-right";
+
+const char kForceDirectionRtl[] = "Right-to-left";
#if defined(OS_WIN) || defined(OS_LINUX)

Powered by Google App Engine
This is Rietveld 408576698