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

Side by Side Diff: chrome/browser/flag_descriptions.cc

Issue 2853523002: [rendertext,i18n] Added flag to force RTL rendering (Closed)
Patch Set: Forgot to update histograms.xml Created 3 years, 7 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 unified diff | Download patch
« no previous file with comments | « chrome/browser/flag_descriptions.h ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2017 The Chromium Authors. All rights reserved. 1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/flag_descriptions.h" 5 #include "chrome/browser/flag_descriptions.h"
6 6
7 namespace flag_descriptions { 7 namespace flag_descriptions {
8 8
9 // Material Design version of chrome://bookmarks 9 // Material Design version of chrome://bookmarks
10 10
(...skipping 1575 matching lines...) Expand 10 before | Expand all | Expand 10 after
1586 "sync to all Chrome devices."; 1586 "sync to all Chrome devices.";
1587 1587
1588 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) 1588 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID)
1589 1589
1590 const char kForceUiDirectionName[] = "Force UI direction"; 1590 const char kForceUiDirectionName[] = "Force UI direction";
1591 1591
1592 const char kForceUiDirectionDescription[] = 1592 const char kForceUiDirectionDescription[] =
1593 "Explicitly force the UI to left-to-right (LTR) or right-to-left (RTL) " 1593 "Explicitly force the UI to left-to-right (LTR) or right-to-left (RTL) "
1594 "mode, overriding the default direction of the UI language."; 1594 "mode, overriding the default direction of the UI language.";
1595 1595
1596 const char kForceUiDirectionLtr[] = "Left-to-right"; 1596 const char kForceTextDirectionName[] = "Force text direction";
1597 1597
1598 const char kForceUiDirectionRtl[] = "Right-to-left"; 1598 const char kForceTextDirectionDescription[] =
1599 "Explicitly force the per-character directionality of UI text to "
1600 "left-to-right (LTR) or right-to-left (RTL) mode, overriding the "
1601 "default direction of the character language.";
1602
1603 const char kForceDirectionLtr[] = "Left-to-right";
1604
1605 const char kForceDirectionRtl[] = "Right-to-left";
1599 1606
1600 #if defined(OS_WIN) || defined(OS_LINUX) 1607 #if defined(OS_WIN) || defined(OS_LINUX)
1601 1608
1602 const char kEnableInputImeApiName[] = "Enable Input IME API"; 1609 const char kEnableInputImeApiName[] = "Enable Input IME API";
1603 1610
1604 const char kEnableInputImeApiDescription[] = 1611 const char kEnableInputImeApiDescription[] =
1605 "Enable the use of chrome.input.ime API."; 1612 "Enable the use of chrome.input.ime API.";
1606 1613
1607 #endif // defined(OS_WIN) || defined(OS_LINUX) 1614 #endif // defined(OS_WIN) || defined(OS_LINUX)
1608 1615
(...skipping 1443 matching lines...) Expand 10 before | Expand all | Expand 10 after
3052 3059
3053 const char kOmniboxDisplayTitleForCurrentUrlName[] = 3060 const char kOmniboxDisplayTitleForCurrentUrlName[] =
3054 "Include title for the current URL in the omnibox"; 3061 "Include title for the current URL in the omnibox";
3055 3062
3056 const char kOmniboxDisplayTitleForCurrentUrlDescription[] = 3063 const char kOmniboxDisplayTitleForCurrentUrlDescription[] =
3057 "In the event that the omnibox provides suggestions on-focus, the URL of " 3064 "In the event that the omnibox provides suggestions on-focus, the URL of "
3058 "the current page is provided as the first suggestion without a title. " 3065 "the current page is provided as the first suggestion without a title. "
3059 "Enabling this flag causes the title to be displayed."; 3066 "Enabling this flag causes the title to be displayed.";
3060 3067
3061 } // namespace flag_descriptions 3068 } // namespace flag_descriptions
OLDNEW
« no previous file with comments | « chrome/browser/flag_descriptions.h ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698