| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 package org.chromium.chrome.browser; | 5 package org.chromium.chrome.browser; |
| 6 | 6 |
| 7 /** | 7 /** |
| 8 * Contains all of the command line switches that are specific to the chrome/ | 8 * Contains all of the command line switches that are specific to the chrome/ |
| 9 * portion of Chromium on Android. | 9 * portion of Chromium on Android. |
| 10 */ | 10 */ |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 public static final String ENABLE_AUTOFILL_KEYBOARD_ACCESSORY = | 197 public static final String ENABLE_AUTOFILL_KEYBOARD_ACCESSORY = |
| 198 "enable-autofill-keyboard-accessory-view"; | 198 "enable-autofill-keyboard-accessory-view"; |
| 199 | 199 |
| 200 /** | 200 /** |
| 201 * Enables hung renderer InfoBar activation for unresponsive web content. | 201 * Enables hung renderer InfoBar activation for unresponsive web content. |
| 202 * Native switch - switches::kEnableHungRendererInfoBar | 202 * Native switch - switches::kEnableHungRendererInfoBar |
| 203 */ | 203 */ |
| 204 public static final String ENABLE_HUNG_RENDERER_INFOBAR = "enable-hung-rende
rer-infobar"; | 204 public static final String ENABLE_HUNG_RENDERER_INFOBAR = "enable-hung-rende
rer-infobar"; |
| 205 | 205 |
| 206 /** | 206 /** |
| 207 * Enable Physical Web feature. | |
| 208 * Native switch - switches::kEnablePhysicalWeb | |
| 209 */ | |
| 210 public static final String ENABLE_PHYSICAL_WEB = "enable-physical-web"; | |
| 211 | |
| 212 /** | |
| 213 * Enables Web Notification custom layouts. | 207 * Enables Web Notification custom layouts. |
| 214 * Native switch - switches::kEnableWebNotificationCustomLayouts | 208 * Native switch - switches::kEnableWebNotificationCustomLayouts |
| 215 */ | 209 */ |
| 216 public static final String ENABLE_WEB_NOTIFICATION_CUSTOM_LAYOUTS = | 210 public static final String ENABLE_WEB_NOTIFICATION_CUSTOM_LAYOUTS = |
| 217 "enable-web-notification-custom-layouts"; | 211 "enable-web-notification-custom-layouts"; |
| 218 | 212 |
| 219 /** | 213 /** |
| 220 * Disables Web Notification custom layouts. | 214 * Disables Web Notification custom layouts. |
| 221 * Native switch - switches::kDisableWebNotificationCustomLayouts | 215 * Native switch - switches::kDisableWebNotificationCustomLayouts |
| 222 */ | 216 */ |
| 223 public static final String DISABLE_WEB_NOTIFICATION_CUSTOM_LAYOUTS = | 217 public static final String DISABLE_WEB_NOTIFICATION_CUSTOM_LAYOUTS = |
| 224 "disable-web-notification-custom-layouts"; | 218 "disable-web-notification-custom-layouts"; |
| 225 | 219 |
| 226 /** | 220 /** |
| 227 * Enable tab switcher in document mode (merged tabs and apps option). | 221 * Enable tab switcher in document mode (merged tabs and apps option). |
| 228 */ | 222 */ |
| 229 public static final String ENABLE_TAB_SWITCHER_IN_DOCUMENT_MODE = | 223 public static final String ENABLE_TAB_SWITCHER_IN_DOCUMENT_MODE = |
| 230 "enable-tab-switcher-in-document-mode"; | 224 "enable-tab-switcher-in-document-mode"; |
| 231 | 225 |
| 232 // Prevent instantiation. | 226 // Prevent instantiation. |
| 233 private ChromeSwitches() {} | 227 private ChromeSwitches() {} |
| 234 } | 228 } |
| OLD | NEW |