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

Side by Side Diff: chrome/common/chrome_features.h

Issue 2491403002: Add a feature flag for the security verbose (Closed)
Patch Set: Fix compile issues Created 4 years, 1 month 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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 // This file defines all the public base::FeatureList features for the chrome 5 // This file defines all the public base::FeatureList features for the chrome
6 // module. 6 // module.
7 7
8 #ifndef CHROME_COMMON_CHROME_FEATURES_H_ 8 #ifndef CHROME_COMMON_CHROME_FEATURES_H_
9 #define CHROME_COMMON_CHROME_FEATURES_H_ 9 #define CHROME_COMMON_CHROME_FEATURES_H_
10 10
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 #endif // defined(OS_CHROMEOS) 74 #endif // defined(OS_CHROMEOS)
75 75
76 #if defined(ENABLE_PLUGINS) 76 #if defined(ENABLE_PLUGINS)
77 extern const base::Feature kRunAllFlashInAllowMode; 77 extern const base::Feature kRunAllFlashInAllowMode;
78 #endif 78 #endif
79 79
80 extern const base::Feature kSafeSearchUrlReporting; 80 extern const base::Feature kSafeSearchUrlReporting;
81 81
82 extern const base::Feature kSimplifiedFullscreenUI; 82 extern const base::Feature kSimplifiedFullscreenUI;
83 83
84 #if !defined(OS_ANDROID) && !defined(OS_IOS)
85 extern const base::Feature kSecurityChip;
86 #endif
87
84 #if defined(SYZYASAN) 88 #if defined(SYZYASAN)
85 extern const base::Feature kSyzyasanDeferredFree; 89 extern const base::Feature kSyzyasanDeferredFree;
86 #endif 90 #endif
87 91
88 #if defined(OS_CHROMEOS) 92 #if defined(OS_CHROMEOS)
89 extern const base::Feature kOptInImeMenu; 93 extern const base::Feature kOptInImeMenu;
90 94
91 extern const base::Feature kQuickUnlockPin; 95 extern const base::Feature kQuickUnlockPin;
92 96
93 extern const base::Feature kEHVInputOnImeMenu; 97 extern const base::Feature kEHVInputOnImeMenu;
94 #endif // defined(OS_CHROMEOS) 98 #endif // defined(OS_CHROMEOS)
95 99
96 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in 100 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in
97 // alphabetical order, or in one of the ifdefs (also in order in each section). 101 // alphabetical order, or in one of the ifdefs (also in order in each section).
98 102
99 } // namespace features 103 } // namespace features
100 104
101 #endif // CHROME_COMMON_CHROME_FEATURES_H_ 105 #endif // CHROME_COMMON_CHROME_FEATURES_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/location_bar/location_bar_view.cc ('k') | chrome/common/chrome_features.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698