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 409 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
420 | 420 |
421 extern const char kLocationHardReloadName[]; | 421 extern const char kLocationHardReloadName[]; |
422 extern const char kLocationHardReloadDescription[]; | 422 extern const char kLocationHardReloadDescription[]; |
423 | 423 |
424 extern const char kManualPasswordGenerationName[]; | 424 extern const char kManualPasswordGenerationName[]; |
425 extern const char kManualPasswordGenerationDescription[]; | 425 extern const char kManualPasswordGenerationDescription[]; |
426 | 426 |
427 extern const char kMarkHttpAsName[]; | 427 extern const char kMarkHttpAsName[]; |
428 extern const char kMarkHttpAsDescription[]; | 428 extern const char kMarkHttpAsDescription[]; |
429 extern const char kMarkHttpAsDangerous[]; | 429 extern const char kMarkHttpAsDangerous[]; |
| 430 extern const char kMarkHttpAsNonSecureAfterEditing[]; |
| 431 extern const char kMarkHttpAsNonSecureWhileIncognito[]; |
| 432 extern const char kMarkHttpAsNonSecureWhileIncognitoOrEditing[]; |
430 | 433 |
431 extern const char kMaterialDesignIncognitoNTPName[]; | 434 extern const char kMaterialDesignIncognitoNTPName[]; |
432 extern const char kMaterialDesignIncognitoNTPDescription[]; | 435 extern const char kMaterialDesignIncognitoNTPDescription[]; |
433 | 436 |
434 extern const char kMediaRemotingName[]; | 437 extern const char kMediaRemotingName[]; |
435 extern const char kMediaRemotingDescription[]; | 438 extern const char kMediaRemotingDescription[]; |
436 | 439 |
437 extern const char kMemoryAblationName[]; | 440 extern const char kMemoryAblationName[]; |
438 extern const char kMemoryAblationDescription[]; | 441 extern const char kMemoryAblationDescription[]; |
439 | 442 |
(...skipping 1052 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 |