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

Unified Diff: chrome/browser/flag_descriptions.cc

Issue 2853523002: [rendertext,i18n] Added flag to force RTL rendering (Closed)
Patch Set: 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..5247933697b819452e99e5ff13aae15a9f76fa65 100644
--- a/chrome/browser/flag_descriptions.cc
+++ b/chrome/browser/flag_descriptions.cc
@@ -1597,11 +1597,16 @@ const char kAutofillCreditCardUploadDescription[] =
#endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID)
const char kForceUiDirectionName[] = "Force UI direction";
+const char kForceTextDirectionName[] = "Force text direction";
msw 2017/04/28 22:04:03 ditto ordering
Kevin Bailey 2017/04/29 04:24:03 Done.
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 kForceTextDirectionDescription[] =
+ "Explicitly force text rendering to left-to-right (LTR) or right-to-left "
+ "(RTL) mode, overriding the default direction of the UI language.";
msw 2017/04/28 22:04:03 "overriding the per-character directionality of UI
Kevin Bailey 2017/04/29 04:24:03 Done.
+
const char kForceUiDirectionLtr[] = "Left-to-right";
const char kForceUiDirectionRtl[] = "Right-to-left";

Powered by Google App Engine
This is Rietveld 408576698