| 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 1571 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1582 extern const char kAutoplayPolicyName[]; | 1582 extern const char kAutoplayPolicyName[]; |
| 1583 extern const char kAutoplayPolicyDescription[]; | 1583 extern const char kAutoplayPolicyDescription[]; |
| 1584 | 1584 |
| 1585 extern const char kAutoplayPolicyUserGestureRequiredForCrossOrigin[]; | 1585 extern const char kAutoplayPolicyUserGestureRequiredForCrossOrigin[]; |
| 1586 extern const char kAutoplayPolicyNoUserGestureRequired[]; | 1586 extern const char kAutoplayPolicyNoUserGestureRequired[]; |
| 1587 extern const char kAutoplayPolicyUserGestureRequired[]; | 1587 extern const char kAutoplayPolicyUserGestureRequired[]; |
| 1588 | 1588 |
| 1589 extern const char kOmniboxDisplayTitleForCurrentUrlName[]; | 1589 extern const char kOmniboxDisplayTitleForCurrentUrlName[]; |
| 1590 extern const char kOmniboxDisplayTitleForCurrentUrlDescription[]; | 1590 extern const char kOmniboxDisplayTitleForCurrentUrlDescription[]; |
| 1591 | 1591 |
| 1592 extern const char kOmniboxUIMaxAutocompleteMatchesName[]; |
| 1593 extern const char kOmniboxUIMaxAutocompleteMatchesDescription[]; |
| 1594 |
| 1592 extern const char kOmniboxUIVerticalMarginName[]; | 1595 extern const char kOmniboxUIVerticalMarginName[]; |
| 1593 extern const char kOmniboxUIVerticalMarginDescription[]; | 1596 extern const char kOmniboxUIVerticalMarginDescription[]; |
| 1594 | 1597 |
| 1595 extern const char kForceEffectiveConnectionTypeName[]; | 1598 extern const char kForceEffectiveConnectionTypeName[]; |
| 1596 extern const char kForceEffectiveConnectionTypeDescription[]; | 1599 extern const char kForceEffectiveConnectionTypeDescription[]; |
| 1597 | 1600 |
| 1598 extern const char kEffectiveConnectionTypeUnknownDescription[]; | 1601 extern const char kEffectiveConnectionTypeUnknownDescription[]; |
| 1599 extern const char kEffectiveConnectionTypeOfflineDescription[]; | 1602 extern const char kEffectiveConnectionTypeOfflineDescription[]; |
| 1600 extern const char kEffectiveConnectionTypeSlow2GDescription[]; | 1603 extern const char kEffectiveConnectionTypeSlow2GDescription[]; |
| 1601 extern const char kEffectiveConnectionType2GDescription[]; | 1604 extern const char kEffectiveConnectionType2GDescription[]; |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1637 #if defined(OS_MACOSX) | 1640 #if defined(OS_MACOSX) |
| 1638 | 1641 |
| 1639 extern const char kMacRTLName[]; | 1642 extern const char kMacRTLName[]; |
| 1640 extern const char kMacRTLDescription[]; | 1643 extern const char kMacRTLDescription[]; |
| 1641 | 1644 |
| 1642 #endif // defined(OS_MACOSX) | 1645 #endif // defined(OS_MACOSX) |
| 1643 | 1646 |
| 1644 } // namespace flag_descriptions | 1647 } // namespace flag_descriptions |
| 1645 | 1648 |
| 1646 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 1649 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |