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

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: Rebase. 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 c768aa6ed6d04d6af5b969613b9cc67282c68b74..5cb64672d22d39eb11b1b7207a50f81c2d9c08a7 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/ChromeSwitches.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/ChromeSwitches.java
@@ -195,6 +195,20 @@
*/
public static final String ENABLE_PHYSICAL_WEB = "enable-physical-web";
+ /**
+ * 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