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

Unified Diff: content/public/common/content_switches.cc

Issue 1701313002: Partial implementation of subscription restrictions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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: content/public/common/content_switches.cc
diff --git a/content/public/common/content_switches.cc b/content/public/common/content_switches.cc
index 21330fee0d16efb5ff321d818578b54014849ecc..a47c78d19253b6c1e9b161d246232c603787aafe 100644
--- a/content/public/common/content_switches.cc
+++ b/content/public/common/content_switches.cc
@@ -468,6 +468,12 @@ const char kEnableStrictMixedContentChecking[] =
const char kEnableStrictPowerfulFeatureRestrictions[] =
"enable-strict-powerful-feature-restrictions";
+// Allow JavaScript to register for push messaging subscriptions using the
+// public key of the application server instead of a sender ID handed out by the
+// developer console.
+const char kEnableSubscriptionRestrictions[] =
Peter Beverloo 2016/02/17 16:15:36 Right now, we're hiding the feature behind *two* c
harkness 2016/02/18 10:45:15 Done.
+ "enable-subscription-restrictions";
+
// Enable use of experimental TCP sockets API for sending data in the
// SYN packet.
const char kEnableTcpFastOpen[] = "enable-tcp-fastopen";

Powered by Google App Engine
This is Rietveld 408576698