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

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

Issue 2812113004: Write last_modified date to Content Settings in the PrefProvider (Closed)
Patch Set: fix 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 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 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 #endif 163 #endif
164 164
165 extern const base::Feature kSafeSearchUrlReporting; 165 extern const base::Feature kSafeSearchUrlReporting;
166 166
167 extern const base::Feature kSimplifiedFullscreenUI; 167 extern const base::Feature kSimplifiedFullscreenUI;
168 168
169 #if defined(SYZYASAN) 169 #if defined(SYZYASAN)
170 extern const base::Feature kSyzyasanDeferredFree; 170 extern const base::Feature kSyzyasanDeferredFree;
171 #endif 171 #endif
172 172
173 extern const base::Feature kTabsInCbd;
174
173 extern const base::Feature kUseGroupedPermissionInfobars; 175 extern const base::Feature kUseGroupedPermissionInfobars;
174 176
175 #if defined(OS_CHROMEOS) 177 #if defined(OS_CHROMEOS)
176 extern const base::Feature kOptInImeMenu; 178 extern const base::Feature kOptInImeMenu;
177 179
178 extern const base::Feature kQuickUnlockPin; 180 extern const base::Feature kQuickUnlockPin;
179 181
180 extern const base::Feature kQuickUnlockFingerprint; 182 extern const base::Feature kQuickUnlockFingerprint;
181 183
182 extern const base::Feature kEHVInputOnImeMenu; 184 extern const base::Feature kEHVInputOnImeMenu;
183 185
184 extern const base::Feature kCrosCompUpdates; 186 extern const base::Feature kCrosCompUpdates;
185 #endif // defined(OS_CHROMEOS) 187 #endif // defined(OS_CHROMEOS)
186 188
187 bool PrefServiceEnabled(); 189 bool PrefServiceEnabled();
188 190
189 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in 191 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in
190 // alphabetical order, or in one of the ifdefs (also in order in each section). 192 // alphabetical order, or in one of the ifdefs (also in order in each section).
191 193
192 } // namespace features 194 } // namespace features
193 195
194 #endif // CHROME_COMMON_CHROME_FEATURES_H_ 196 #endif // CHROME_COMMON_CHROME_FEATURES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698