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