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

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

Issue 2886433002: [Android] Adding content settings provider for notification channels (Closed)
Patch Set: responding to comments Created 3 years, 6 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 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 #if BUILDFLAG(ENABLE_PLUGINS) 165 #if BUILDFLAG(ENABLE_PLUGINS)
166 extern const base::Feature kRunAllFlashInAllowMode; 166 extern const base::Feature kRunAllFlashInAllowMode;
167 #endif 167 #endif
168 168
169 extern const base::Feature kSafeSearchUrlReporting; 169 extern const base::Feature kSafeSearchUrlReporting;
170 170
171 extern const base::Feature kSimplifiedFullscreenUI; 171 extern const base::Feature kSimplifiedFullscreenUI;
172 172
173 extern const base::Feature kSiteDetails; 173 extern const base::Feature kSiteDetails;
174 174
175 #if defined(OS_ANDROID)
176 extern const base::Feature kSiteNotificationChannels;
177 #endif
178
175 #if defined(SYZYASAN) 179 #if defined(SYZYASAN)
176 extern const base::Feature kSyzyasanDeferredFree; 180 extern const base::Feature kSyzyasanDeferredFree;
177 #endif 181 #endif
178 182
179 extern const base::Feature kTabsInCbd; 183 extern const base::Feature kTabsInCbd;
180 184
181 extern const base::Feature kUseGoogleLocalNtp; 185 extern const base::Feature kUseGoogleLocalNtp;
182 186
183 extern const base::Feature kUseGroupedPermissionInfobars; 187 extern const base::Feature kUseGroupedPermissionInfobars;
184 188
(...skipping 18 matching lines...) Expand all
203 extern const base::Feature kPageLoadMetricsMojofication; 207 extern const base::Feature kPageLoadMetricsMojofication;
204 208
205 bool PrefServiceEnabled(); 209 bool PrefServiceEnabled();
206 210
207 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in 211 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in
208 // alphabetical order, or in one of the ifdefs (also in order in each section). 212 // alphabetical order, or in one of the ifdefs (also in order in each section).
209 213
210 } // namespace features 214 } // namespace features
211 215
212 #endif // CHROME_COMMON_CHROME_FEATURES_H_ 216 #endif // CHROME_COMMON_CHROME_FEATURES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698