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 422 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
433 | 433 |
434 extern const char kMediaRemotingName[]; | 434 extern const char kMediaRemotingName[]; |
435 extern const char kMediaRemotingDescription[]; | 435 extern const char kMediaRemotingDescription[]; |
436 | 436 |
437 extern const char kMemoryAblationName[]; | 437 extern const char kMemoryAblationName[]; |
438 extern const char kMemoryAblationDescription[]; | 438 extern const char kMemoryAblationDescription[]; |
439 | 439 |
440 extern const char kMemoryCoordinatorName[]; | 440 extern const char kMemoryCoordinatorName[]; |
441 extern const char kMemoryCoordinatorDescription[]; | 441 extern const char kMemoryCoordinatorDescription[]; |
442 | 442 |
| 443 extern const char kMessageCenterNewStyleNotificationName[]; |
| 444 extern const char kMessageCenterNewStyleNotificationDescription[]; |
| 445 |
443 extern const char kMessageCenterAlwaysScrollUpUponRemovalName[]; | 446 extern const char kMessageCenterAlwaysScrollUpUponRemovalName[]; |
444 extern const char kMessageCenterAlwaysScrollUpUponRemovalDescription[]; | 447 extern const char kMessageCenterAlwaysScrollUpUponRemovalDescription[]; |
445 | 448 |
446 extern const char kMhtmlGeneratorOptionName[]; | 449 extern const char kMhtmlGeneratorOptionName[]; |
447 extern const char kMhtmlGeneratorOptionDescription[]; | 450 extern const char kMhtmlGeneratorOptionDescription[]; |
448 extern const char kMhtmlSkipNostoreMain[]; | 451 extern const char kMhtmlSkipNostoreMain[]; |
449 extern const char kMhtmlSkipNostoreAll[]; | 452 extern const char kMhtmlSkipNostoreAll[]; |
450 | 453 |
451 extern const char kMojoLoadingName[]; | 454 extern const char kMojoLoadingName[]; |
452 extern const char kMojoLoadingDescription[]; | 455 extern const char kMojoLoadingDescription[]; |
(...skipping 1039 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 |