| 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 * Native switch - switches::kDisablePreconnect | 178 * Native switch - switches::kDisablePreconnect |
| 179 */ | 179 */ |
| 180 public static final String DISABLE_PRECONNECT = "disable-preconnect"; | 180 public static final String DISABLE_PRECONNECT = "disable-preconnect"; |
| 181 | 181 |
| 182 /** | 182 /** |
| 183 * Specifies Android phone page loading progress bar animation. | 183 * Specifies Android phone page loading progress bar animation. |
| 184 * Native switch - switches::kProgressBarAnimation | 184 * Native switch - switches::kProgressBarAnimation |
| 185 */ | 185 */ |
| 186 public static final String PROGRESS_BAR_ANIMATION = "progress-bar-animation"
; | 186 public static final String PROGRESS_BAR_ANIMATION = "progress-bar-animation"
; |
| 187 | 187 |
| 188 /** |
| 189 * Enable offline pages. |
| 190 */ |
| 191 public static final String ENABLE_OFFLINE_PAGES = "enable-offline-pages"; |
| 192 |
| 188 // Prevent instantiation. | 193 // Prevent instantiation. |
| 189 private ChromeSwitches() {} | 194 private ChromeSwitches() {} |
| 190 } | 195 } |
| OLD | NEW |