| 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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 /** | 79 /** |
| 80 * Forces the update menu badge to show. | 80 * Forces the update menu badge to show. |
| 81 */ | 81 */ |
| 82 public static final String FORCE_SHOW_UPDATE_MENU_BADGE = "force-show-update
-menu-badge"; | 82 public static final String FORCE_SHOW_UPDATE_MENU_BADGE = "force-show-update
-menu-badge"; |
| 83 | 83 |
| 84 /** | 84 /** |
| 85 * Sets the market URL for Chrome for use in testing. | 85 * Sets the market URL for Chrome for use in testing. |
| 86 */ | 86 */ |
| 87 public static final String MARKET_URL_FOR_TESTING = "market-url-for-testing"
; | 87 public static final String MARKET_URL_FOR_TESTING = "market-url-for-testing"
; |
| 88 | 88 |
| 89 /** Enables the download manager UI. */ | |
| 90 public static final String ENABLE_DOWNLOAD_MANAGER_UI = "enable-download-man
ager-ui"; | |
| 91 | |
| 92 ////////////////////////////////////////////////////////////////////////////
/////////////////// | 89 ////////////////////////////////////////////////////////////////////////////
/////////////////// |
| 93 // Native Switches | 90 // Native Switches |
| 94 ////////////////////////////////////////////////////////////////////////////
/////////////////// | 91 ////////////////////////////////////////////////////////////////////////////
/////////////////// |
| 95 | 92 |
| 96 /** Enable the DOM Distiller. */ | 93 /** Enable the DOM Distiller. */ |
| 97 public static final String ENABLE_DOM_DISTILLER = "enable-dom-distiller"; | 94 public static final String ENABLE_DOM_DISTILLER = "enable-dom-distiller"; |
| 98 | 95 |
| 99 /** | 96 /** |
| 100 * Use sandbox Wallet environment for requestAutocomplete. | 97 * Use sandbox Wallet environment for requestAutocomplete. |
| 101 * Native switch - autofill::switches::kWalletServiceUseSandbox. | 98 * Native switch - autofill::switches::kWalletServiceUseSandbox. |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 | 226 |
| 230 /** | 227 /** |
| 231 * Forces the WebAPK runtime dex to be extracted each time that Chrome is st
arted. | 228 * Forces the WebAPK runtime dex to be extracted each time that Chrome is st
arted. |
| 232 */ | 229 */ |
| 233 public static final String ALWAYS_EXTRACT_WEBAPK_RUNTIME_DEX_ON_STARTUP = | 230 public static final String ALWAYS_EXTRACT_WEBAPK_RUNTIME_DEX_ON_STARTUP = |
| 234 "always-extract-webapk-dex-on-startup"; | 231 "always-extract-webapk-dex-on-startup"; |
| 235 | 232 |
| 236 // Prevent instantiation. | 233 // Prevent instantiation. |
| 237 private ChromeSwitches() {} | 234 private ChromeSwitches() {} |
| 238 } | 235 } |
| OLD | NEW |