Index: chrome/browser/flag_descriptions.cc |
diff --git a/chrome/browser/flag_descriptions.cc b/chrome/browser/flag_descriptions.cc |
index 0834650111cbcacae3d7dbf758cdbb09cec51f8f..363b3695cedb765f2607d1f435f202db817836e3 100644 |
--- a/chrome/browser/flag_descriptions.cc |
+++ b/chrome/browser/flag_descriptions.cc |
@@ -1593,9 +1593,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) |