| 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 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 * Set the partner-defined homepage URL, for testing. | 175 * Set the partner-defined homepage URL, for testing. |
| 176 */ | 176 */ |
| 177 public static final String PARTNER_HOMEPAGE_FOR_TESTING = "partner-homepage-
for-testing"; | 177 public static final String PARTNER_HOMEPAGE_FOR_TESTING = "partner-homepage-
for-testing"; |
| 178 | 178 |
| 179 /** | 179 /** |
| 180 * Forces the WebAPK runtime dex to be extracted each time that Chrome is st
arted. | 180 * Forces the WebAPK runtime dex to be extracted each time that Chrome is st
arted. |
| 181 */ | 181 */ |
| 182 public static final String ALWAYS_EXTRACT_WEBAPK_RUNTIME_DEX_ON_STARTUP = | 182 public static final String ALWAYS_EXTRACT_WEBAPK_RUNTIME_DEX_ON_STARTUP = |
| 183 "always-extract-webapk-dex-on-startup"; | 183 "always-extract-webapk-dex-on-startup"; |
| 184 | 184 |
| 185 /** Enable non-'org.chromium.webapk' prefixed package names with proper sign
ature. */ |
| 186 public static final String ENABLE_ANY_WEBAPK_PACKAGE_NAME = "any-webapk-pack
age-name"; |
| 187 |
| 185 /** | 188 /** |
| 186 * Forces a check for whether the WebAPK's Web Manifest has changed each tim
e that a WebAPK is | 189 * Forces a check for whether the WebAPK's Web Manifest has changed each tim
e that a WebAPK is |
| 187 * launched. | 190 * launched. |
| 188 */ | 191 */ |
| 189 public static final String CHECK_FOR_WEB_MANIFEST_UPDATE_ON_STARTUP = | 192 public static final String CHECK_FOR_WEB_MANIFEST_UPDATE_ON_STARTUP = |
| 190 "check-for-web-manifest-update-on-startup"; | 193 "check-for-web-manifest-update-on-startup"; |
| 191 | 194 |
| 192 /** Enable Vr Shell development environment. */ | 195 /** Enable Vr Shell development environment. */ |
| 193 public static final String ENABLE_VR_SHELL_DEV = "enable-vr-shell-dev"; | 196 public static final String ENABLE_VR_SHELL_DEV = "enable-vr-shell-dev"; |
| 194 | 197 |
| 195 // Prevent instantiation. | 198 // Prevent instantiation. |
| 196 private ChromeSwitches() {} | 199 private ChromeSwitches() {} |
| 197 } | 200 } |
| OLD | NEW |