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