| 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 19 matching lines...) Expand all Loading... |
| 30 | 30 |
| 31 /** Disable the First Run Experience. */ | 31 /** Disable the First Run Experience. */ |
| 32 public static final String DISABLE_FIRST_RUN_EXPERIENCE = "disable-fre"; | 32 public static final String DISABLE_FIRST_RUN_EXPERIENCE = "disable-fre"; |
| 33 | 33 |
| 34 /** Enable the Lightweight First Run Experience. */ | 34 /** Enable the Lightweight First Run Experience. */ |
| 35 public static final String ENABLE_LIGHTWEIGHT_FIRST_RUN_EXPERIENCE = "enable
-lightweight-fre"; | 35 public static final String ENABLE_LIGHTWEIGHT_FIRST_RUN_EXPERIENCE = "enable
-lightweight-fre"; |
| 36 | 36 |
| 37 /** Force the crash dump to be uploaded regardless of preferences. */ | 37 /** Force the crash dump to be uploaded regardless of preferences. */ |
| 38 public static final String FORCE_CRASH_DUMP_UPLOAD = "force-dump-upload"; | 38 public static final String FORCE_CRASH_DUMP_UPLOAD = "force-dump-upload"; |
| 39 | 39 |
| 40 /** | |
| 41 * Force the crash dump NOT to be uploaded regardless of preferences. | |
| 42 * This is intended for testing use, when command-line switches may be neede
d. | |
| 43 * Overrides any other upload preference. | |
| 44 */ | |
| 45 public static final String DISABLE_CRASH_DUMP_UPLOAD = "disable-dump-upload"
; | |
| 46 | |
| 47 /** Whether or not to enable the experimental tablet tab stack. */ | 40 /** Whether or not to enable the experimental tablet tab stack. */ |
| 48 public static final String ENABLE_TABLET_TAB_STACK = "enable-tablet-tab-stac
k"; | 41 public static final String ENABLE_TABLET_TAB_STACK = "enable-tablet-tab-stac
k"; |
| 49 | 42 |
| 50 /** Never forward URL requests to external intents. */ | 43 /** Never forward URL requests to external intents. */ |
| 51 public static final String DISABLE_EXTERNAL_INTENT_REQUESTS = | 44 public static final String DISABLE_EXTERNAL_INTENT_REQUESTS = |
| 52 "disable-external-intent-requests"; | 45 "disable-external-intent-requests"; |
| 53 | 46 |
| 54 /** Disable Contextual Search. */ | 47 /** Disable Contextual Search. */ |
| 55 public static final String DISABLE_CONTEXTUAL_SEARCH = "disable-contextual-s
earch"; | 48 public static final String DISABLE_CONTEXTUAL_SEARCH = "disable-contextual-s
earch"; |
| 56 | 49 |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 */ | 191 */ |
| 199 public static final String CHECK_FOR_WEB_MANIFEST_UPDATE_ON_STARTUP = | 192 public static final String CHECK_FOR_WEB_MANIFEST_UPDATE_ON_STARTUP = |
| 200 "check-for-web-manifest-update-on-startup"; | 193 "check-for-web-manifest-update-on-startup"; |
| 201 | 194 |
| 202 /** Enable Vr Shell development environment. */ | 195 /** Enable Vr Shell development environment. */ |
| 203 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"; |
| 204 | 197 |
| 205 // Prevent instantiation. | 198 // Prevent instantiation. |
| 206 private ChromeSwitches() {} | 199 private ChromeSwitches() {} |
| 207 } | 200 } |
| OLD | NEW |