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 #include "chrome/browser/flag_descriptions.h" | 5 #include "chrome/browser/flag_descriptions.h" |
6 | 6 |
7 namespace flag_descriptions { | 7 namespace flag_descriptions { |
8 | 8 |
9 // Material Design version of chrome://bookmarks | 9 // Material Design version of chrome://bookmarks |
10 | 10 |
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
185 const char kEnableHttpFormWarningDescription[] = | 185 const char kEnableHttpFormWarningDescription[] = |
186 "Attaches a warning UI to any password or credit card fields detected " | 186 "Attaches a warning UI to any password or credit card fields detected " |
187 "when the top-level page is not HTTPS"; | 187 "when the top-level page is not HTTPS"; |
188 | 188 |
189 const char kMarkHttpAsName[] = "Mark non-secure origins as non-secure"; | 189 const char kMarkHttpAsName[] = "Mark non-secure origins as non-secure"; |
190 | 190 |
191 const char kMarkHttpAsDescription[] = "Change the UI treatment for HTTP pages"; | 191 const char kMarkHttpAsDescription[] = "Change the UI treatment for HTTP pages"; |
192 | 192 |
193 const char kMarkHttpAsDangerous[] = "Always mark HTTP as actively dangerous"; | 193 const char kMarkHttpAsDangerous[] = "Always mark HTTP as actively dangerous"; |
194 | 194 |
| 195 // Material design of the Incognito NTP. |
| 196 |
| 197 extern const char kMaterialDesignIncognitoNTPName[] = |
| 198 "Material Design Incognito NTP."; |
| 199 |
| 200 extern const char kMaterialDesignIncognitoNTPDescription[] = |
| 201 "If enabled, the Incognito New Tab page uses the new material design " |
| 202 "with a better readable text."; |
| 203 |
195 const char kSavePageAsMhtmlName[] = "Save Page as MHTML"; | 204 const char kSavePageAsMhtmlName[] = "Save Page as MHTML"; |
196 | 205 |
197 const char kSavePageAsMhtmlDescription[] = | 206 const char kSavePageAsMhtmlDescription[] = |
198 "Enables saving pages as MHTML: a single text file containing HTML and " | 207 "Enables saving pages as MHTML: a single text file containing HTML and " |
199 "all sub-resources."; | 208 "all sub-resources."; |
200 | 209 |
201 // Flag and values for MHTML Geenrator options lab. | 210 // Flag and values for MHTML Geenrator options lab. |
202 | 211 |
203 const char kMhtmlGeneratorOptionName[] = "MHTML Generation Option"; | 212 const char kMhtmlGeneratorOptionName[] = "MHTML Generation Option"; |
204 | 213 |
(...skipping 2741 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2946 const char kEnableEncryptionMigrationName[] = | 2955 const char kEnableEncryptionMigrationName[] = |
2947 "Enable encryption migration of user data"; | 2956 "Enable encryption migration of user data"; |
2948 | 2957 |
2949 const char kEnableEncryptionMigrationDescription[] = | 2958 const char kEnableEncryptionMigrationDescription[] = |
2950 "If enabled and the device supports ARC, the user will be asked to update " | 2959 "If enabled and the device supports ARC, the user will be asked to update " |
2951 "the encryption of user data when the user signs in."; | 2960 "the encryption of user data when the user signs in."; |
2952 | 2961 |
2953 #endif // #if defined(OS_CHROMEOS) | 2962 #endif // #if defined(OS_CHROMEOS) |
2954 | 2963 |
2955 } // namespace flag_descriptions | 2964 } // namespace flag_descriptions |
OLD | NEW |