| 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 446 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 457 extern const char kMessageCenterAlwaysScrollUpUponRemovalDescription[]; | 457 extern const char kMessageCenterAlwaysScrollUpUponRemovalDescription[]; |
| 458 | 458 |
| 459 extern const char kMhtmlGeneratorOptionName[]; | 459 extern const char kMhtmlGeneratorOptionName[]; |
| 460 extern const char kMhtmlGeneratorOptionDescription[]; | 460 extern const char kMhtmlGeneratorOptionDescription[]; |
| 461 extern const char kMhtmlSkipNostoreMain[]; | 461 extern const char kMhtmlSkipNostoreMain[]; |
| 462 extern const char kMhtmlSkipNostoreAll[]; | 462 extern const char kMhtmlSkipNostoreAll[]; |
| 463 | 463 |
| 464 extern const char kMojoLoadingName[]; | 464 extern const char kMojoLoadingName[]; |
| 465 extern const char kMojoLoadingDescription[]; | 465 extern const char kMojoLoadingDescription[]; |
| 466 | 466 |
| 467 extern const char kNetworkPredictionOptionsForServiceWorkerName[]; |
| 468 extern const char kNetworkPredictionOptionsForServiceWorkerDescription[]; |
| 469 |
| 467 extern const char kNewAudioRenderingMixingStrategyName[]; | 470 extern const char kNewAudioRenderingMixingStrategyName[]; |
| 468 extern const char kNewAudioRenderingMixingStrategyDescription[]; | 471 extern const char kNewAudioRenderingMixingStrategyDescription[]; |
| 469 | 472 |
| 470 extern const char kNewBookmarkAppsName[]; | 473 extern const char kNewBookmarkAppsName[]; |
| 471 extern const char kNewBookmarkAppsDescription[]; | 474 extern const char kNewBookmarkAppsDescription[]; |
| 472 | 475 |
| 473 extern const char kNewOmniboxAnswerTypesName[]; | 476 extern const char kNewOmniboxAnswerTypesName[]; |
| 474 extern const char kNewOmniboxAnswerTypesDescription[]; | 477 extern const char kNewOmniboxAnswerTypesDescription[]; |
| 475 | 478 |
| 476 extern const char kNewRemotePlaybackPipelineName[]; | 479 extern const char kNewRemotePlaybackPipelineName[]; |
| (...skipping 1065 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1542 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) | 1545 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) |
| 1543 | 1546 |
| 1544 // ============================================================================ | 1547 // ============================================================================ |
| 1545 // Don't just add flags to the end, put them in the right section in | 1548 // Don't just add flags to the end, put them in the right section in |
| 1546 // alphabetical order. See top instructions for more. | 1549 // alphabetical order. See top instructions for more. |
| 1547 // ============================================================================ | 1550 // ============================================================================ |
| 1548 | 1551 |
| 1549 } // namespace flag_descriptions | 1552 } // namespace flag_descriptions |
| 1550 | 1553 |
| 1551 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 1554 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |