| 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 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 /** | 178 /** |
| 179 * Forces a check for whether the WebAPK's Web Manifest has changed each tim
e that a WebAPK is | 179 * Forces a check for whether the WebAPK's Web Manifest has changed each tim
e that a WebAPK is |
| 180 * launched. | 180 * launched. |
| 181 */ | 181 */ |
| 182 public static final String CHECK_FOR_WEB_MANIFEST_UPDATE_ON_STARTUP = | 182 public static final String CHECK_FOR_WEB_MANIFEST_UPDATE_ON_STARTUP = |
| 183 "check-for-web-manifest-update-on-startup"; | 183 "check-for-web-manifest-update-on-startup"; |
| 184 | 184 |
| 185 /** Enable Vr Shell development environment. */ | 185 /** Enable Vr Shell development environment. */ |
| 186 public static final String ENABLE_VR_SHELL_DEV = "enable-vr-shell-dev"; | 186 public static final String ENABLE_VR_SHELL_DEV = "enable-vr-shell-dev"; |
| 187 | 187 |
| 188 /** |
| 189 * Determines which of hint text to show in the omnibox url bar. |
| 190 * See about:flags for descriptions. |
| 191 */ |
| 192 public static final String OMNIBOX_PLACEHOLDER_EXPERIMENT = "omnibox-placeho
lder-experiment"; |
| 193 |
| 188 // Prevent instantiation. | 194 // Prevent instantiation. |
| 189 private ChromeSwitches() {} | 195 private ChromeSwitches() {} |
| 190 } | 196 } |
| OLD | NEW |