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

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/ChromeSwitches.java

Issue 1394423004: Initial skeleton of custom layouts for Web Notifications. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix v17 styles and add entries to LoginCustomFlags. Created 5 years, 2 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/android/java/src/org/chromium/chrome/browser/ChromeSwitches.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/ChromeSwitches.java b/chrome/android/java/src/org/chromium/chrome/browser/ChromeSwitches.java
index c69cb1e13180600601341454ab1246af10e1e562..ec05e3d5c34c6cf8fd7b285d8bf3d731ae4d5fda 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/ChromeSwitches.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/ChromeSwitches.java
@@ -194,6 +194,20 @@
*/
public static final String ENABLE_HUNG_RENDERER_INFOBAR = "enable-hung-renderer-infobar";
+ /**
+ * Enable custom layouts for Web Notifications.
+ * Native switch - switches::kEnableNotificationsCustomLayouts
+ */
+ public static final String ENABLE_NOTIFICATIONS_CUSTOM_LAYOUTS =
+ "enable-notifications-custom-layouts";
+
+ /**
+ * Disable custom layouts for Web Notifications.
+ * Native switch - switches::kDisableNotificationsCustomLayouts
+ */
+ public static final String DISABLE_NOTIFICATIONS_CUSTOM_LAYOUTS =
+ "disable-notifications-custom-layouts";
+
// Prevent instantiation.
private ChromeSwitches() {}
}

Powered by Google App Engine
This is Rietveld 408576698