| 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 439 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 450 extern const char kMessageCenterAlwaysScrollUpUponRemovalDescription[]; | 450 extern const char kMessageCenterAlwaysScrollUpUponRemovalDescription[]; |
| 451 | 451 |
| 452 extern const char kMhtmlGeneratorOptionName[]; | 452 extern const char kMhtmlGeneratorOptionName[]; |
| 453 extern const char kMhtmlGeneratorOptionDescription[]; | 453 extern const char kMhtmlGeneratorOptionDescription[]; |
| 454 extern const char kMhtmlSkipNostoreMain[]; | 454 extern const char kMhtmlSkipNostoreMain[]; |
| 455 extern const char kMhtmlSkipNostoreAll[]; | 455 extern const char kMhtmlSkipNostoreAll[]; |
| 456 | 456 |
| 457 extern const char kMojoLoadingName[]; | 457 extern const char kMojoLoadingName[]; |
| 458 extern const char kMojoLoadingDescription[]; | 458 extern const char kMojoLoadingDescription[]; |
| 459 | 459 |
| 460 extern const char kNetworkPredictionOptionsForServiceWorkerName[]; |
| 461 extern const char kNetworkPredictionOptionsForServiceWorkerDescription[]; |
| 462 |
| 460 extern const char kNewAudioRenderingMixingStrategyName[]; | 463 extern const char kNewAudioRenderingMixingStrategyName[]; |
| 461 extern const char kNewAudioRenderingMixingStrategyDescription[]; | 464 extern const char kNewAudioRenderingMixingStrategyDescription[]; |
| 462 | 465 |
| 463 extern const char kNewBookmarkAppsName[]; | 466 extern const char kNewBookmarkAppsName[]; |
| 464 extern const char kNewBookmarkAppsDescription[]; | 467 extern const char kNewBookmarkAppsDescription[]; |
| 465 | 468 |
| 466 extern const char kNewOmniboxAnswerTypesName[]; | 469 extern const char kNewOmniboxAnswerTypesName[]; |
| 467 extern const char kNewOmniboxAnswerTypesDescription[]; | 470 extern const char kNewOmniboxAnswerTypesDescription[]; |
| 468 | 471 |
| 469 extern const char kNewRemotePlaybackPipelineName[]; | 472 extern const char kNewRemotePlaybackPipelineName[]; |
| (...skipping 1028 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1498 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) | 1501 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) |
| 1499 | 1502 |
| 1500 // ============================================================================ | 1503 // ============================================================================ |
| 1501 // Don't just add flags to the end, put them in the right section in | 1504 // Don't just add flags to the end, put them in the right section in |
| 1502 // alphabetical order. See top instructions for more. | 1505 // alphabetical order. See top instructions for more. |
| 1503 // ============================================================================ | 1506 // ============================================================================ |
| 1504 | 1507 |
| 1505 } // namespace flag_descriptions | 1508 } // namespace flag_descriptions |
| 1506 | 1509 |
| 1507 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 1510 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |