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 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
192 extern const char kEnableHttpFormWarningDescription[]; | 192 extern const char kEnableHttpFormWarningDescription[]; |
193 | 193 |
194 // Name of the 'Mark Non-Secure Origins As' lab. | 194 // Name of the 'Mark Non-Secure Origins As' lab. |
195 extern const char kMarkHttpAsName[]; | 195 extern const char kMarkHttpAsName[]; |
196 | 196 |
197 // Description of the 'Mark Non-Secure Origins As' lab. | 197 // Description of the 'Mark Non-Secure Origins As' lab. |
198 extern const char kMarkHttpAsDescription[]; | 198 extern const char kMarkHttpAsDescription[]; |
199 | 199 |
200 extern const char kMarkHttpAsDangerous[]; | 200 extern const char kMarkHttpAsDangerous[]; |
201 | 201 |
| 202 // Material Design of the Incognito NTP. |
| 203 |
| 204 // Name for the flag to enable the material redesign of the Incognito NTP. |
| 205 extern const char kMaterialDesignIncognitoNTPName[]; |
| 206 |
| 207 // Description for the flag to enable the material redesign |
| 208 // of the Incognito NTP. |
| 209 extern const char kMaterialDesignIncognitoNTPDescription[]; |
| 210 |
202 // Name of the 'Save Page as MHTML' lab. | 211 // Name of the 'Save Page as MHTML' lab. |
203 extern const char kSavePageAsMhtmlName[]; | 212 extern const char kSavePageAsMhtmlName[]; |
204 | 213 |
205 // Description of the 'Save Page as MHTML' lab. | 214 // Description of the 'Save Page as MHTML' lab. |
206 extern const char kSavePageAsMhtmlDescription[]; | 215 extern const char kSavePageAsMhtmlDescription[]; |
207 | 216 |
208 // Flag and values for MHTML Geenrator options lab. | 217 // Flag and values for MHTML Geenrator options lab. |
209 | 218 |
210 // Name of the 'MHTML Generator Options' lab. | 219 // Name of the 'MHTML Generator Options' lab. |
211 extern const char kMhtmlGeneratorOptionName[]; | 220 extern const char kMhtmlGeneratorOptionName[]; |
(...skipping 2984 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3196 extern const char kEnableEncryptionMigrationName[]; | 3205 extern const char kEnableEncryptionMigrationName[]; |
3197 | 3206 |
3198 // Description of the about: flag for enabling encryption migratoin. | 3207 // Description of the about: flag for enabling encryption migratoin. |
3199 extern const char kEnableEncryptionMigrationDescription[]; | 3208 extern const char kEnableEncryptionMigrationDescription[]; |
3200 | 3209 |
3201 #endif // #if defined(OS_CHROMEOS) | 3210 #endif // #if defined(OS_CHROMEOS) |
3202 | 3211 |
3203 } // namespace flag_descriptions | 3212 } // namespace flag_descriptions |
3204 | 3213 |
3205 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3214 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
OLD | NEW |