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

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

Issue 2737413004: Add a Certificate Viewer link to the Page Info dropdown (Closed)
Patch Set: Add Cocoa, Fix MaxViews, Add Flag 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 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 const char kSavePageAsMhtmlName[] = "Save Page as MHTML"; 195 const char kSavePageAsMhtmlName[] = "Save Page as MHTML";
196 196
197 const char kSavePageAsMhtmlDescription[] = 197 const char kSavePageAsMhtmlDescription[] =
198 "Enables saving pages as MHTML: a single text file containing HTML and " 198 "Enables saving pages as MHTML: a single text file containing HTML and "
199 "all sub-resources."; 199 "all sub-resources.";
200 200
201 // Flag and values for MHTML Geenrator options lab. 201 // Flag and values for MHTML Generator options lab.
202 202
203 const char kMhtmlGeneratorOptionName[] = "MHTML Generation Option"; 203 const char kMhtmlGeneratorOptionName[] = "MHTML Generation Option";
204 204
205 const char kMhtmlGeneratorOptionDescription[] = 205 const char kMhtmlGeneratorOptionDescription[] =
206 "Provides experimental options for MHTML file generator."; 206 "Provides experimental options for MHTML file generator.";
207 207
208 const char kMhtmlSkipNostoreMain[] = "Skips no-store main frame."; 208 const char kMhtmlSkipNostoreMain[] = "Skips no-store main frame.";
209 209
210 const char kMhtmlSkipNostoreAll[] = "Skips all no-store resources."; 210 const char kMhtmlSkipNostoreAll[] = "Skips all no-store resources.";
211 211
(...skipping 1304 matching lines...) Expand 10 before | Expand all | Expand 10 after
1516 #if defined(OS_WIN) 1516 #if defined(OS_WIN)
1517 1517
1518 const char kEnableAppcontainerName[] = "Enable AppContainer Lockdown."; 1518 const char kEnableAppcontainerName[] = "Enable AppContainer Lockdown.";
1519 1519
1520 const char kEnableAppcontainerDescription[] = 1520 const char kEnableAppcontainerDescription[] =
1521 "Enables the use of an AppContainer on sandboxed processes to improve " 1521 "Enables the use of an AppContainer on sandboxed processes to improve "
1522 "security."; 1522 "security.";
1523 1523
1524 #endif // defined(OS_WIN) 1524 #endif // defined(OS_WIN)
1525 1525
1526 #if defined(TOOLKIT_VIEWS) || (defined(OS_MACOSX) && !defined(OS_IOS))
1527
1528 const char kShowCertButtonOnPageInfoName[] = "Show certificate button";
lgarron 2017/04/05 02:06:25 ditto
elawrence 2017/04/06 01:06:11 Done.
1529
1530 const char kShowCertButtonOnPageInfoDescription[] =
1531 "Shows a button that launches the certificate viewer from the Page "
lgarron 2017/04/05 02:06:25 I would write: Add a link from the Page Info bubbl
elawrence 2017/04/06 01:06:11 Done.
1532 "Information dropdown window on HTTPS sites.";
lgarron 2017/04/05 02:06:25 I don't think we call it "dropdown window" anywher
elawrence 2017/04/06 01:06:10 Done.
1533
1534 #endif // defined(TOOLKIT_VIEWS) || (defined(OS_MACOSX) && !defined(OS_IOS))
1535
1526 #if defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) 1536 #if defined(TOOLKIT_VIEWS) || defined(OS_ANDROID)
1527 1537
1528 const char kAutofillCreditCardUploadName[] = 1538 const char kAutofillCreditCardUploadName[] =
1529 "Enable offering upload of Autofilled credit cards"; 1539 "Enable offering upload of Autofilled credit cards";
1530 1540
1531 const char kAutofillCreditCardUploadDescription[] = 1541 const char kAutofillCreditCardUploadDescription[] =
1532 "Enables a new option to upload credit cards to Google Payments for " 1542 "Enables a new option to upload credit cards to Google Payments for "
1533 "sync to all Chrome devices."; 1543 "sync to all Chrome devices.";
1534 1544
1535 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) 1545 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID)
(...skipping 1364 matching lines...) Expand 10 before | Expand all | Expand 10 after
2900 const char kEnableEhvInputName[] = 2910 const char kEnableEhvInputName[] =
2901 "Emoji, handwriting and voice input on opt-in IME menu"; 2911 "Emoji, handwriting and voice input on opt-in IME menu";
2902 2912
2903 const char kEnableEhvInputDescription[] = 2913 const char kEnableEhvInputDescription[] =
2904 "Enable access to emoji, handwriting and voice input form opt-in IME " 2914 "Enable access to emoji, handwriting and voice input form opt-in IME "
2905 "menu."; 2915 "menu.";
2906 2916
2907 #endif // #if defined(OS_CHROMEOS) 2917 #endif // #if defined(OS_CHROMEOS)
2908 2918
2909 } // namespace flag_descriptions 2919 } // namespace flag_descriptions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698