| 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 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 * Enables the all bookmarks section in bookmark manager. | 209 * Enables the all bookmarks section in bookmark manager. |
| 210 */ | 210 */ |
| 211 public static final String ENABLE_ALL_BOOKMARKS_VIEW = "enable-all-bookmarks
-view"; | 211 public static final String ENABLE_ALL_BOOKMARKS_VIEW = "enable-all-bookmarks
-view"; |
| 212 | 212 |
| 213 /** | 213 /** |
| 214 * Enables "Add to Home screen" to mint a WebApk. | 214 * Enables "Add to Home screen" to mint a WebApk. |
| 215 */ | 215 */ |
| 216 public static final String ENABLE_WEBAPK = "enable-webapk"; | 216 public static final String ENABLE_WEBAPK = "enable-webapk"; |
| 217 | 217 |
| 218 /** | 218 /** |
| 219 * Enables theme colors in the tab switcher. | |
| 220 */ | |
| 221 public static final String ENABLE_TAB_SWITCHER_THEME_COLORS = | |
| 222 "enable-tab-switcher-theme-colors"; | |
| 223 | |
| 224 /** | |
| 225 * Forces the WebAPK runtime dex to be extracted each time that Chrome is st
arted. | 219 * Forces the WebAPK runtime dex to be extracted each time that Chrome is st
arted. |
| 226 */ | 220 */ |
| 227 public static final String ALWAYS_EXTRACT_WEBAPK_RUNTIME_DEX_ON_STARTUP = | 221 public static final String ALWAYS_EXTRACT_WEBAPK_RUNTIME_DEX_ON_STARTUP = |
| 228 "always-extract-webapk-dex-on-startup"; | 222 "always-extract-webapk-dex-on-startup"; |
| 229 | 223 |
| 230 // Prevent instantiation. | 224 // Prevent instantiation. |
| 231 private ChromeSwitches() {} | 225 private ChromeSwitches() {} |
| 232 } | 226 } |
| OLD | NEW |