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

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

Issue 2853523002: [rendertext,i18n] Added flag to force RTL rendering (Closed)
Patch Set: 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
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 #ifndef CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ 5 #ifndef CHROME_BROWSER_FLAG_DESCRIPTIONS_H_
6 #define CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ 6 #define CHROME_BROWSER_FLAG_DESCRIPTIONS_H_
7 7
8 // Includes needed for macros allowing conditional compilation of some strings. 8 // Includes needed for macros allowing conditional compilation of some strings.
9 #include "build/build_config.h" 9 #include "build/build_config.h"
10 #include "build/buildflag.h" 10 #include "build/buildflag.h"
(...skipping 1739 matching lines...) Expand 10 before | Expand all | Expand 10 after
1750 extern const char kAutofillCreditCardUploadName[]; 1750 extern const char kAutofillCreditCardUploadName[];
1751 1751
1752 // Description of the flag to enable uploading Autofill credit cards. 1752 // Description of the flag to enable uploading Autofill credit cards.
1753 extern const char kAutofillCreditCardUploadDescription[]; 1753 extern const char kAutofillCreditCardUploadDescription[];
1754 1754
1755 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) 1755 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID)
1756 1756
1757 // Name for the flag to force a specific UI direction. 1757 // Name for the flag to force a specific UI direction.
1758 extern const char kForceUiDirectionName[]; 1758 extern const char kForceUiDirectionName[];
1759 1759
1760 // Name for the flag to force a specific text rendering direction.
msw 2017/04/28 22:04:03 nit: order Ui name and desc together before text n
Kevin Bailey 2017/04/29 04:24:03 Done.
1761 extern const char kForceTextDirectionName[];
1762
1760 // Description for the flag to force a specific UI direction. 1763 // Description for the flag to force a specific UI direction.
1761 extern const char kForceUiDirectionDescription[]; 1764 extern const char kForceUiDirectionDescription[];
1762 1765
1766 // Description for the flag to force a specific rext rendering direction.
1767 extern const char kForceTextDirectionDescription[];
1768
1763 // Name for the option to force left-to-right UI direction mode. 1769 // Name for the option to force left-to-right UI direction mode.
1764 extern const char kForceUiDirectionLtr[]; 1770 extern const char kForceUiDirectionLtr[];
1765 1771
1766 // Name for the option to force right-to-left UI direction mode. 1772 // Name for the option to force right-to-left UI direction mode.
1767 extern const char kForceUiDirectionRtl[]; 1773 extern const char kForceUiDirectionRtl[];
1768 1774
1769 #if defined(OS_WIN) || defined(OS_LINUX) 1775 #if defined(OS_WIN) || defined(OS_LINUX)
1770 1776
1771 // Name of the flag to enable che chrome.input.ime API. 1777 // Name of the flag to enable che chrome.input.ime API.
1772 extern const char kEnableInputImeApiName[]; 1778 extern const char kEnableInputImeApiName[];
(...skipping 1523 matching lines...) Expand 10 before | Expand all | Expand 10 after
3296 3302
3297 // Name of the flag that enables Blink's idle time spell checker. 3303 // Name of the flag that enables Blink's idle time spell checker.
3298 extern const char kEnableIdleTimeSpellCheckingName[]; 3304 extern const char kEnableIdleTimeSpellCheckingName[];
3299 3305
3300 // Description of the flag that enables Blink's idle time spell checker. 3306 // Description of the flag that enables Blink's idle time spell checker.
3301 extern const char kEnableIdleTimeSpellCheckingDescription[]; 3307 extern const char kEnableIdleTimeSpellCheckingDescription[];
3302 3308
3303 } // namespace flag_descriptions 3309 } // namespace flag_descriptions
3304 3310
3305 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ 3311 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698