| 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 3073 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3285 extern const char kEnableCopylessPasteName[]; | 3294 extern const char kEnableCopylessPasteName[]; |
| 3286 | 3295 |
| 3287 // Description of the flag that enables Copyless Paste. | 3296 // Description of the flag that enables Copyless Paste. |
| 3288 extern const char kEnableCopylessPasteDescription[]; | 3297 extern const char kEnableCopylessPasteDescription[]; |
| 3289 | 3298 |
| 3290 #endif // defined(OS_ANDROID) | 3299 #endif // defined(OS_ANDROID) |
| 3291 | 3300 |
| 3292 } // namespace flag_descriptions | 3301 } // namespace flag_descriptions |
| 3293 | 3302 |
| 3294 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3303 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |