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 480 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
491 | 491 |
492 extern const char kOffMainThreadFetchName[]; | 492 extern const char kOffMainThreadFetchName[]; |
493 extern const char kOffMainThreadFetchDescription[]; | 493 extern const char kOffMainThreadFetchDescription[]; |
494 | 494 |
495 extern const char kOmniboxDisplayTitleForCurrentUrlName[]; | 495 extern const char kOmniboxDisplayTitleForCurrentUrlName[]; |
496 extern const char kOmniboxDisplayTitleForCurrentUrlDescription[]; | 496 extern const char kOmniboxDisplayTitleForCurrentUrlDescription[]; |
497 | 497 |
498 extern const char kOmniboxUIMaxAutocompleteMatchesName[]; | 498 extern const char kOmniboxUIMaxAutocompleteMatchesName[]; |
499 extern const char kOmniboxUIMaxAutocompleteMatchesDescription[]; | 499 extern const char kOmniboxUIMaxAutocompleteMatchesDescription[]; |
500 | 500 |
| 501 extern const char kOmniboxUINarrowDropdownName[]; |
| 502 extern const char kOmniboxUINarrowDropdownDescription[]; |
| 503 |
501 extern const char kOmniboxUIVerticalLayoutName[]; | 504 extern const char kOmniboxUIVerticalLayoutName[]; |
502 extern const char kOmniboxUIVerticalLayoutDescription[]; | 505 extern const char kOmniboxUIVerticalLayoutDescription[]; |
503 | 506 |
504 extern const char kOmniboxUIVerticalMarginName[]; | 507 extern const char kOmniboxUIVerticalMarginName[]; |
505 extern const char kOmniboxUIVerticalMarginDescription[]; | 508 extern const char kOmniboxUIVerticalMarginDescription[]; |
506 | 509 |
507 extern const char kOriginTrialsName[]; | 510 extern const char kOriginTrialsName[]; |
508 extern const char kOriginTrialsDescription[]; | 511 extern const char kOriginTrialsDescription[]; |
509 | 512 |
510 extern const char kOverlayScrollbarsName[]; | 513 extern const char kOverlayScrollbarsName[]; |
(...skipping 986 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1497 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) | 1500 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) |
1498 | 1501 |
1499 // ============================================================================ | 1502 // ============================================================================ |
1500 // Don't just add flags to the end, put them in the right section in | 1503 // Don't just add flags to the end, put them in the right section in |
1501 // alphabetical order. See top instructions for more. | 1504 // alphabetical order. See top instructions for more. |
1502 // ============================================================================ | 1505 // ============================================================================ |
1503 | 1506 |
1504 } // namespace flag_descriptions | 1507 } // namespace flag_descriptions |
1505 | 1508 |
1506 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 1509 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
OLD | NEW |