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 472 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
483 | 483 |
484 extern const char kOffMainThreadFetchName[]; | 484 extern const char kOffMainThreadFetchName[]; |
485 extern const char kOffMainThreadFetchDescription[]; | 485 extern const char kOffMainThreadFetchDescription[]; |
486 | 486 |
487 extern const char kOmniboxDisplayTitleForCurrentUrlName[]; | 487 extern const char kOmniboxDisplayTitleForCurrentUrlName[]; |
488 extern const char kOmniboxDisplayTitleForCurrentUrlDescription[]; | 488 extern const char kOmniboxDisplayTitleForCurrentUrlDescription[]; |
489 | 489 |
490 extern const char kOmniboxUIMaxAutocompleteMatchesName[]; | 490 extern const char kOmniboxUIMaxAutocompleteMatchesName[]; |
491 extern const char kOmniboxUIMaxAutocompleteMatchesDescription[]; | 491 extern const char kOmniboxUIMaxAutocompleteMatchesDescription[]; |
492 | 492 |
| 493 extern const char kOmniboxUIVerticalLayoutName[]; |
| 494 extern const char kOmniboxUIVerticalLayoutDescription[]; |
| 495 |
493 extern const char kOmniboxUIVerticalMarginName[]; | 496 extern const char kOmniboxUIVerticalMarginName[]; |
494 extern const char kOmniboxUIVerticalMarginDescription[]; | 497 extern const char kOmniboxUIVerticalMarginDescription[]; |
495 | 498 |
496 extern const char kOriginTrialsName[]; | 499 extern const char kOriginTrialsName[]; |
497 extern const char kOriginTrialsDescription[]; | 500 extern const char kOriginTrialsDescription[]; |
498 | 501 |
499 extern const char kOverlayScrollbarsName[]; | 502 extern const char kOverlayScrollbarsName[]; |
500 extern const char kOverlayScrollbarsDescription[]; | 503 extern const char kOverlayScrollbarsDescription[]; |
501 | 504 |
502 extern const char kOverscrollHistoryNavigationName[]; | 505 extern const char kOverscrollHistoryNavigationName[]; |
(...skipping 972 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1475 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) | 1478 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) |
1476 | 1479 |
1477 // ============================================================================ | 1480 // ============================================================================ |
1478 // Don't just add flags to the end, put them in the right section in | 1481 // Don't just add flags to the end, put them in the right section in |
1479 // alphabetical order. See top instructions for more. | 1482 // alphabetical order. See top instructions for more. |
1480 // ============================================================================ | 1483 // ============================================================================ |
1481 | 1484 |
1482 } // namespace flag_descriptions | 1485 } // namespace flag_descriptions |
1483 | 1486 |
1484 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 1487 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
OLD | NEW |