| 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 |
| 90 /** |
| 91 * Show the button for saving an offline page. |
| 92 */ |
| 93 public static final String ENABLE_OFFLINE_PAGE_DOWNLOADING = "enable-offline
-page-downloading"; |
| 94 |
| 89 ////////////////////////////////////////////////////////////////////////////
/////////////////// | 95 ////////////////////////////////////////////////////////////////////////////
/////////////////// |
| 90 // Native Switches | 96 // Native Switches |
| 91 ////////////////////////////////////////////////////////////////////////////
/////////////////// | 97 ////////////////////////////////////////////////////////////////////////////
/////////////////// |
| 92 | 98 |
| 93 /** Enable the DOM Distiller. */ | 99 /** Enable the DOM Distiller. */ |
| 94 public static final String ENABLE_DOM_DISTILLER = "enable-dom-distiller"; | 100 public static final String ENABLE_DOM_DISTILLER = "enable-dom-distiller"; |
| 95 | 101 |
| 96 /** | 102 /** |
| 97 * Use sandbox Wallet environment for requestAutocomplete. | 103 * Use sandbox Wallet environment for requestAutocomplete. |
| 98 * Native switch - autofill::switches::kWalletServiceUseSandbox. | 104 * Native switch - autofill::switches::kWalletServiceUseSandbox. |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 | 226 |
| 221 /** | 227 /** |
| 222 * 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. |
| 223 */ | 229 */ |
| 224 public static final String ALWAYS_EXTRACT_WEBAPK_RUNTIME_DEX_ON_STARTUP = | 230 public static final String ALWAYS_EXTRACT_WEBAPK_RUNTIME_DEX_ON_STARTUP = |
| 225 "always-extract-webapk-dex-on-startup"; | 231 "always-extract-webapk-dex-on-startup"; |
| 226 | 232 |
| 227 // Prevent instantiation. | 233 // Prevent instantiation. |
| 228 private ChromeSwitches() {} | 234 private ChromeSwitches() {} |
| 229 } | 235 } |
| OLD | NEW |