| 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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 */ | 111 */ |
| 112 public static final String USE_SANDBOX_WALLET_ENVIRONMENT = "wallet-service-
use-sandbox"; | 112 public static final String USE_SANDBOX_WALLET_ENVIRONMENT = "wallet-service-
use-sandbox"; |
| 113 | 113 |
| 114 /** | 114 /** |
| 115 * Change Google base URL. | 115 * Change Google base URL. |
| 116 * Native switch - switches::kGoogleBaseURL. | 116 * Native switch - switches::kGoogleBaseURL. |
| 117 */ | 117 */ |
| 118 public static final String GOOGLE_BASE_URL = "google-base-url"; | 118 public static final String GOOGLE_BASE_URL = "google-base-url"; |
| 119 | 119 |
| 120 /** | 120 /** |
| 121 * Use fake device for Media Stream to replace actual camera and microphone. | |
| 122 * Native switch - switches::kUseFakeDeviceForMediaStream. | |
| 123 */ | |
| 124 public static final String USE_FAKE_DEVICE_FOR_MEDIA_STREAM = | |
| 125 "use-fake-device-for-media-stream"; | |
| 126 | |
| 127 /** | |
| 128 * Disable domain reliability | 121 * Disable domain reliability |
| 129 * Native switch - switches::kDisableDomainReliability | 122 * Native switch - switches::kDisableDomainReliability |
| 130 */ | 123 */ |
| 131 public static final String DISABLE_DOMAIN_RELIABILITY = "disable-domain-reli
ability"; | 124 public static final String DISABLE_DOMAIN_RELIABILITY = "disable-domain-reli
ability"; |
| 132 | 125 |
| 133 /** | 126 /** |
| 134 * Specifies Android phone page loading progress bar animation. | 127 * Specifies Android phone page loading progress bar animation. |
| 135 * Native switch - switches::kProgressBarAnimation | 128 * Native switch - switches::kProgressBarAnimation |
| 136 */ | 129 */ |
| 137 public static final String PROGRESS_BAR_ANIMATION = "progress-bar-animation"
; | 130 public static final String PROGRESS_BAR_ANIMATION = "progress-bar-animation"
; |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 */ | 202 */ |
| 210 public static final String CHECK_FOR_WEB_MANIFEST_UPDATE_ON_STARTUP = | 203 public static final String CHECK_FOR_WEB_MANIFEST_UPDATE_ON_STARTUP = |
| 211 "check-for-web-manifest-update-on-startup"; | 204 "check-for-web-manifest-update-on-startup"; |
| 212 | 205 |
| 213 /** Enable Vr Shell development environment. */ | 206 /** Enable Vr Shell development environment. */ |
| 214 public static final String ENABLE_VR_SHELL_DEV = "enable-vr-shell-dev"; | 207 public static final String ENABLE_VR_SHELL_DEV = "enable-vr-shell-dev"; |
| 215 | 208 |
| 216 // Prevent instantiation. | 209 // Prevent instantiation. |
| 217 private ChromeSwitches() {} | 210 private ChromeSwitches() {} |
| 218 } | 211 } |
| OLD | NEW |