OLD | NEW |
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 1737 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1748 extern const char kAutofillCreditCardUploadDescription[]; | 1748 extern const char kAutofillCreditCardUploadDescription[]; |
1749 | 1749 |
1750 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) | 1750 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) |
1751 | 1751 |
1752 // Name for the flag to force a specific UI direction. | 1752 // Name for the flag to force a specific UI direction. |
1753 extern const char kForceUiDirectionName[]; | 1753 extern const char kForceUiDirectionName[]; |
1754 | 1754 |
1755 // Description for the flag to force a specific UI direction. | 1755 // Description for the flag to force a specific UI direction. |
1756 extern const char kForceUiDirectionDescription[]; | 1756 extern const char kForceUiDirectionDescription[]; |
1757 | 1757 |
1758 // Name for the option to force left-to-right UI direction mode. | 1758 // Name for the flag to force a specific text rendering direction. |
1759 extern const char kForceUiDirectionLtr[]; | 1759 extern const char kForceTextDirectionName[]; |
1760 | 1760 |
1761 // Name for the option to force right-to-left UI direction mode. | 1761 // Description for the flag to force a specific text rendering direction. |
1762 extern const char kForceUiDirectionRtl[]; | 1762 extern const char kForceTextDirectionDescription[]; |
| 1763 |
| 1764 // Name for the option to force left-to-right UI or text direction mode. |
| 1765 extern const char kForceDirectionLtr[]; |
| 1766 |
| 1767 // Name for the option to force right-to-left UI or text direction mode. |
| 1768 extern const char kForceDirectionRtl[]; |
1763 | 1769 |
1764 #if defined(OS_WIN) || defined(OS_LINUX) | 1770 #if defined(OS_WIN) || defined(OS_LINUX) |
1765 | 1771 |
1766 // Name of the flag to enable che chrome.input.ime API. | 1772 // Name of the flag to enable che chrome.input.ime API. |
1767 extern const char kEnableInputImeApiName[]; | 1773 extern const char kEnableInputImeApiName[]; |
1768 | 1774 |
1769 // Description of the flag to enable the chrome.input.ime API. | 1775 // Description of the flag to enable the chrome.input.ime API. |
1770 extern const char kEnableInputImeApiDescription[]; | 1776 extern const char kEnableInputImeApiDescription[]; |
1771 | 1777 |
1772 #endif // defined(OS_WIN) || defined(OS_LINUX) | 1778 #endif // defined(OS_WIN) || defined(OS_LINUX) |
(...skipping 1546 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3319 // current URL. | 3325 // current URL. |
3320 extern const char kOmniboxDisplayTitleForCurrentUrlName[]; | 3326 extern const char kOmniboxDisplayTitleForCurrentUrlName[]; |
3321 | 3327 |
3322 // Description of the about: flag for displaying the title of the omnibox match | 3328 // Description of the about: flag for displaying the title of the omnibox match |
3323 // for current URL. | 3329 // for current URL. |
3324 extern const char kOmniboxDisplayTitleForCurrentUrlDescription[]; | 3330 extern const char kOmniboxDisplayTitleForCurrentUrlDescription[]; |
3325 | 3331 |
3326 } // namespace flag_descriptions | 3332 } // namespace flag_descriptions |
3327 | 3333 |
3328 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3334 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
OLD | NEW |