Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(110)

Side by Side Diff: chrome/browser/flag_descriptions.cc

Issue 2804823002: Revamp the Incognito NTP on Desktop (Closed)
Patch Set: Addressed comments. Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 2818 matching lines...) Expand 10 before | Expand all | Expand 10 after
3023 const char kEnableCopylessPasteDescription[] = 3032 const char kEnableCopylessPasteDescription[] =
3024 "Provide suggestions for text input, based on your recent context. For " 3033 "Provide suggestions for text input, based on your recent context. For "
3025 "example, if you looked at a restaurant website and switched to the Maps " 3034 "example, if you looked at a restaurant website and switched to the Maps "
3026 "app, the keyboard would offer the name of that restaurant as a suggestion " 3035 "app, the keyboard would offer the name of that restaurant as a suggestion "
3027 "to enter into the search bar. The data is indexed locally, and never sent " 3036 "to enter into the search bar. The data is indexed locally, and never sent "
3028 "to the server. It's disabled in incognito mode."; 3037 "to the server. It's disabled in incognito mode.";
3029 3038
3030 #endif // defined(OS_ANDROID) 3039 #endif // defined(OS_ANDROID)
3031 3040
3032 } // namespace flag_descriptions 3041 } // namespace flag_descriptions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698