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

Unified Diff: chrome/common/chrome_features.cc

Issue 2886433002: [Android] Adding content settings provider for notification channels (Closed)
Patch Set: responding to comments 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 side-by-side diff with in-line comments
Download patch
Index: chrome/common/chrome_features.cc
diff --git a/chrome/common/chrome_features.cc b/chrome/common/chrome_features.cc
index 61a830dc17eb87da17bfd70b420642b3c3aa9e3f..85b95a7e4b6ca8d5952d1212c5b0c63beddbef23 100644
--- a/chrome/common/chrome_features.cc
+++ b/chrome/common/chrome_features.cc
@@ -308,6 +308,13 @@ const base::Feature kRunAllFlashInAllowMode{"RunAllFlashInAllowMode",
const base::Feature kSafeSearchUrlReporting{"SafeSearchUrlReporting",
base::FEATURE_DISABLED_BY_DEFAULT};
+#if defined(OS_ANDROID)
+// Enables separate notification channels in Android O for notifications from
+// different origins, instead of sending them all to a single 'Sites' channel.
+const base::Feature kSiteNotificationChannels{
+ "SiteNotificationChannels", base::FEATURE_DISABLED_BY_DEFAULT};
+#endif // defined (OS_ANDROID)
+
// A new user experience for transitioning into fullscreen and mouse pointer
// lock states.
const base::Feature kSimplifiedFullscreenUI{"ViewsSimplifiedFullscreenUI",

Powered by Google App Engine
This is Rietveld 408576698