| 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 495 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 506 | 506 |
| 507 extern const char kOfflineAutoReloadVisibleOnlyName[]; | 507 extern const char kOfflineAutoReloadVisibleOnlyName[]; |
| 508 extern const char kOfflineAutoReloadVisibleOnlyDescription[]; | 508 extern const char kOfflineAutoReloadVisibleOnlyDescription[]; |
| 509 | 509 |
| 510 extern const char kOffMainThreadFetchName[]; | 510 extern const char kOffMainThreadFetchName[]; |
| 511 extern const char kOffMainThreadFetchDescription[]; | 511 extern const char kOffMainThreadFetchDescription[]; |
| 512 | 512 |
| 513 extern const char kOmniboxDisplayTitleForCurrentUrlName[]; | 513 extern const char kOmniboxDisplayTitleForCurrentUrlName[]; |
| 514 extern const char kOmniboxDisplayTitleForCurrentUrlDescription[]; | 514 extern const char kOmniboxDisplayTitleForCurrentUrlDescription[]; |
| 515 | 515 |
| 516 extern const char kOmniboxUIHideSuggestionUrlPathName[]; | 516 extern const char kOmniboxUIElideSuggestionUrlAfterHostName[]; |
| 517 extern const char kOmniboxUIHideSuggestionUrlPathDescription[]; | 517 extern const char kOmniboxUIElideSuggestionUrlAfterHostDescription[]; |
| 518 | 518 |
| 519 extern const char kOmniboxUIHideSuggestionUrlSchemeName[]; | 519 extern const char kOmniboxUIHideSuggestionUrlSchemeName[]; |
| 520 extern const char kOmniboxUIHideSuggestionUrlSchemeDescription[]; | 520 extern const char kOmniboxUIHideSuggestionUrlSchemeDescription[]; |
| 521 | 521 |
| 522 extern const char kOmniboxUIHideSuggestionUrlTrivialSubdomainsName[]; | 522 extern const char kOmniboxUIHideSuggestionUrlTrivialSubdomainsName[]; |
| 523 extern const char kOmniboxUIHideSuggestionUrlTrivialSubdomainsDescription[]; | 523 extern const char kOmniboxUIHideSuggestionUrlTrivialSubdomainsDescription[]; |
| 524 | 524 |
| 525 extern const char kOmniboxUIMaxAutocompleteMatchesName[]; | 525 extern const char kOmniboxUIMaxAutocompleteMatchesName[]; |
| 526 extern const char kOmniboxUIMaxAutocompleteMatchesDescription[]; | 526 extern const char kOmniboxUIMaxAutocompleteMatchesDescription[]; |
| 527 | 527 |
| (...skipping 1032 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1560 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) | 1560 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) |
| 1561 | 1561 |
| 1562 // ============================================================================ | 1562 // ============================================================================ |
| 1563 // Don't just add flags to the end, put them in the right section in | 1563 // Don't just add flags to the end, put them in the right section in |
| 1564 // alphabetical order. See top instructions for more. | 1564 // alphabetical order. See top instructions for more. |
| 1565 // ============================================================================ | 1565 // ============================================================================ |
| 1566 | 1566 |
| 1567 } // namespace flag_descriptions | 1567 } // namespace flag_descriptions |
| 1568 | 1568 |
| 1569 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 1569 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |