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

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

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 #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 1646 matching lines...) Expand 10 before | Expand all | Expand 10 after
1657 #if defined(OS_WIN) 1657 #if defined(OS_WIN)
1658 1658
1659 // Name of the flag to enable AppContainer lockdown experiment. 1659 // Name of the flag to enable AppContainer lockdown experiment.
1660 extern const char kEnableAppcontainerName[]; 1660 extern const char kEnableAppcontainerName[];
1661 1661
1662 // Description of the flag to enable AppContainer lockdown experiment. 1662 // Description of the flag to enable AppContainer lockdown experiment.
1663 extern const char kEnableAppcontainerDescription[]; 1663 extern const char kEnableAppcontainerDescription[];
1664 1664
1665 #endif // defined(OS_WIN) 1665 #endif // defined(OS_WIN)
1666 1666
1667 #if defined(TOOLKIT_VIEWS) || (defined(OS_MACOSX) && !defined(OS_IOS))
1668
1669 // Name of the flag to enable the Certificate Viewer button on the Page Info UI.
1670 extern const char kShowCertButtonOnPageInfoName[];
lgarron 2017/04/05 02:06:25 ditto
elawrence 2017/04/06 01:06:11 Done.
1671
1672 // Description of the flag to enable the Certificate Viewer button on the Page
1673 // Info UI.
1674 extern const char kShowCertButtonOnPageInfoDescription[];
1675
1676 #endif // defined(TOOLKIT_VIEWS) || (defined(OS_MACOSX) && !defined(OS_IOS))
1677
1667 #if defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) 1678 #if defined(TOOLKIT_VIEWS) || defined(OS_ANDROID)
1668 1679
1669 // Name of the flag to enable uploading Autofill credit cards. 1680 // Name of the flag to enable uploading Autofill credit cards.
1670 extern const char kAutofillCreditCardUploadName[]; 1681 extern const char kAutofillCreditCardUploadName[];
1671 1682
1672 // Description of the flag to enable uploading Autofill credit cards. 1683 // Description of the flag to enable uploading Autofill credit cards.
1673 extern const char kAutofillCreditCardUploadDescription[]; 1684 extern const char kAutofillCreditCardUploadDescription[];
1674 1685
1675 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) 1686 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID)
1676 1687
(...skipping 1469 matching lines...) Expand 10 before | Expand all | Expand 10 after
3146 3157
3147 // Description of the about: flag enabling emoji, handwriting and voice input on 3158 // Description of the about: flag enabling emoji, handwriting and voice input on
3148 // opt-in IME menu. 3159 // opt-in IME menu.
3149 extern const char kEnableEhvInputDescription[]; 3160 extern const char kEnableEhvInputDescription[];
3150 3161
3151 #endif // #if defined(OS_CHROMEOS) 3162 #endif // #if defined(OS_CHROMEOS)
3152 3163
3153 } // namespace flag_descriptions 3164 } // namespace flag_descriptions
3154 3165
3155 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ 3166 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698