| 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 498 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 kOmniboxUIElideSuggestionUrlAfterHostName[]; | 516 extern const char kOmniboxUIElideSuggestionUrlAfterHostName[]; |
| 517 extern const char kOmniboxUIElideSuggestionUrlAfterHostDescription[]; | 517 extern const char kOmniboxUIElideSuggestionUrlAfterHostDescription[]; |
| 518 | 518 |
| 519 extern const char kOmniboxSpareRendererName[]; |
| 520 extern const char kOmniboxSpareRendererDescription[]; |
| 521 |
| 519 extern const char kOmniboxUIHideSuggestionUrlSchemeName[]; | 522 extern const char kOmniboxUIHideSuggestionUrlSchemeName[]; |
| 520 extern const char kOmniboxUIHideSuggestionUrlSchemeDescription[]; | 523 extern const char kOmniboxUIHideSuggestionUrlSchemeDescription[]; |
| 521 | 524 |
| 522 extern const char kOmniboxUIHideSuggestionUrlTrivialSubdomainsName[]; | 525 extern const char kOmniboxUIHideSuggestionUrlTrivialSubdomainsName[]; |
| 523 extern const char kOmniboxUIHideSuggestionUrlTrivialSubdomainsDescription[]; | 526 extern const char kOmniboxUIHideSuggestionUrlTrivialSubdomainsDescription[]; |
| 524 | 527 |
| 525 extern const char kOmniboxUIMaxAutocompleteMatchesName[]; | 528 extern const char kOmniboxUIMaxAutocompleteMatchesName[]; |
| 526 extern const char kOmniboxUIMaxAutocompleteMatchesDescription[]; | 529 extern const char kOmniboxUIMaxAutocompleteMatchesDescription[]; |
| 527 | 530 |
| 528 extern const char kOmniboxUINarrowDropdownName[]; | 531 extern const char kOmniboxUINarrowDropdownName[]; |
| (...skipping 1038 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1567 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) | 1570 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) |
| 1568 | 1571 |
| 1569 // ============================================================================ | 1572 // ============================================================================ |
| 1570 // Don't just add flags to the end, put them in the right section in | 1573 // Don't just add flags to the end, put them in the right section in |
| 1571 // alphabetical order. See top instructions for more. | 1574 // alphabetical order. See top instructions for more. |
| 1572 // ============================================================================ | 1575 // ============================================================================ |
| 1573 | 1576 |
| 1574 } // namespace flag_descriptions | 1577 } // namespace flag_descriptions |
| 1575 | 1578 |
| 1576 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 1579 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |