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

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

Issue 2716333002: Implement important sites dialog for desktop. (Closed)
Patch Set: remove favicon Created 3 years, 7 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 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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 extern const base::Feature kExperimentalKeyboardLockUI; 87 extern const base::Feature kExperimentalKeyboardLockUI;
88 88
89 #if defined(OS_WIN) 89 #if defined(OS_WIN)
90 extern const base::Feature kGdiTextPrinting; 90 extern const base::Feature kGdiTextPrinting;
91 #endif 91 #endif
92 92
93 #if defined(OS_CHROMEOS) 93 #if defined(OS_CHROMEOS)
94 extern const base::Feature kHappinessTrackingSystem; 94 extern const base::Feature kHappinessTrackingSystem;
95 #endif 95 #endif
96 96
97 extern const base::Feature kImportantSitesInCbd;
98
97 extern const base::Feature kImprovedRecoveryComponent; 99 extern const base::Feature kImprovedRecoveryComponent;
98 100
99 #if defined(GOOGLE_CHROME_BUILD) && defined(OS_LINUX) && !defined(OS_CHROMEOS) 101 #if defined(GOOGLE_CHROME_BUILD) && defined(OS_LINUX) && !defined(OS_CHROMEOS)
100 extern const base::Feature kLinuxObsoleteSystemIsEndOfTheLine; 102 extern const base::Feature kLinuxObsoleteSystemIsEndOfTheLine;
101 #endif 103 #endif
102 104
103 extern const base::Feature kLsdPermissionPrompt; 105 extern const base::Feature kLsdPermissionPrompt;
104 106
105 extern const base::Feature kMaterialDesignBookmarks; 107 extern const base::Feature kMaterialDesignBookmarks;
106 108
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 #endif // defined(OS_CHROMEOS) 189 #endif // defined(OS_CHROMEOS)
188 190
189 bool PrefServiceEnabled(); 191 bool PrefServiceEnabled();
190 192
191 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in 193 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in
192 // alphabetical order, or in one of the ifdefs (also in order in each section). 194 // alphabetical order, or in one of the ifdefs (also in order in each section).
193 195
194 } // namespace features 196 } // namespace features
195 197
196 #endif // CHROME_COMMON_CHROME_FEATURES_H_ 198 #endif // CHROME_COMMON_CHROME_FEATURES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698