| 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 483 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 494 | 494 |
| 495 extern const char kOfflineAutoReloadVisibleOnlyName[]; | 495 extern const char kOfflineAutoReloadVisibleOnlyName[]; |
| 496 extern const char kOfflineAutoReloadVisibleOnlyDescription[]; | 496 extern const char kOfflineAutoReloadVisibleOnlyDescription[]; |
| 497 | 497 |
| 498 extern const char kOffMainThreadFetchName[]; | 498 extern const char kOffMainThreadFetchName[]; |
| 499 extern const char kOffMainThreadFetchDescription[]; | 499 extern const char kOffMainThreadFetchDescription[]; |
| 500 | 500 |
| 501 extern const char kOmniboxDisplayTitleForCurrentUrlName[]; | 501 extern const char kOmniboxDisplayTitleForCurrentUrlName[]; |
| 502 extern const char kOmniboxDisplayTitleForCurrentUrlDescription[]; | 502 extern const char kOmniboxDisplayTitleForCurrentUrlDescription[]; |
| 503 | 503 |
| 504 extern const char kOmniboxUIHideSuggestionUrlPathName[]; |
| 505 extern const char kOmniboxUIHideSuggestionUrlPathDescription[]; |
| 506 |
| 507 extern const char kOmniboxUIHideSuggestionUrlSchemeName[]; |
| 508 extern const char kOmniboxUIHideSuggestionUrlSchemeDescription[]; |
| 509 |
| 510 extern const char kOmniboxUIHideSuggestionUrlTrivialSubdomainsName[]; |
| 511 extern const char kOmniboxUIHideSuggestionUrlTrivialSubdomainsDescription[]; |
| 512 |
| 504 extern const char kOmniboxUIMaxAutocompleteMatchesName[]; | 513 extern const char kOmniboxUIMaxAutocompleteMatchesName[]; |
| 505 extern const char kOmniboxUIMaxAutocompleteMatchesDescription[]; | 514 extern const char kOmniboxUIMaxAutocompleteMatchesDescription[]; |
| 506 | 515 |
| 507 extern const char kOmniboxUINarrowDropdownName[]; | 516 extern const char kOmniboxUINarrowDropdownName[]; |
| 508 extern const char kOmniboxUINarrowDropdownDescription[]; | 517 extern const char kOmniboxUINarrowDropdownDescription[]; |
| 509 | 518 |
| 510 extern const char kOmniboxUIVerticalLayoutName[]; | 519 extern const char kOmniboxUIVerticalLayoutName[]; |
| 511 extern const char kOmniboxUIVerticalLayoutDescription[]; | 520 extern const char kOmniboxUIVerticalLayoutDescription[]; |
| 512 | 521 |
| 513 extern const char kOmniboxUIVerticalMarginName[]; | 522 extern const char kOmniboxUIVerticalMarginName[]; |
| (...skipping 992 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1506 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) | 1515 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) |
| 1507 | 1516 |
| 1508 // ============================================================================ | 1517 // ============================================================================ |
| 1509 // Don't just add flags to the end, put them in the right section in | 1518 // Don't just add flags to the end, put them in the right section in |
| 1510 // alphabetical order. See top instructions for more. | 1519 // alphabetical order. See top instructions for more. |
| 1511 // ============================================================================ | 1520 // ============================================================================ |
| 1512 | 1521 |
| 1513 } // namespace flag_descriptions | 1522 } // namespace flag_descriptions |
| 1514 | 1523 |
| 1515 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 1524 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |