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