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

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: Address peter's issues. 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..23e37e4ba3d9ca6221a160ab128086dfdc25d72b 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";
+ /**
+ * Enables Web Notification custom layouts.
+ * Native switch - switches::kEnableWebNotificationCustomLayouts
+ */
+ public static final String ENABLE_WEB_NOTIFICATION_CUSTOM_LAYOUTS =
+ "enable-web-notification-custom-layouts";
+
+ /**
+ * Disables Web Notification custom layouts.
+ * Native switch - switches::kDisableWebNotificationCustomLayouts
+ */
+ public static final String DISABLE_WEB_NOTIFICATION_CUSTOM_LAYOUTS =
+ "disable-web-notification-custom-layouts";
+
// Prevent instantiation.
private ChromeSwitches() {}
}

Powered by Google App Engine
This is Rietveld 408576698