| 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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 * Disable bottom infobar-like Reader Mode panel. | 82 * Disable bottom infobar-like Reader Mode panel. |
| 83 */ | 83 */ |
| 84 public static final String DISABLE_READER_MODE_BOTTOM_BAR = "disable-reader-
mode-bottom-bar"; | 84 public static final String DISABLE_READER_MODE_BOTTOM_BAR = "disable-reader-
mode-bottom-bar"; |
| 85 | 85 |
| 86 /** | 86 /** |
| 87 * Disable Lo-Fi snackbar. | 87 * Disable Lo-Fi snackbar. |
| 88 */ | 88 */ |
| 89 public static final String DISABLE_LOFI_SNACKBAR = "disable-lo-fi-snackbar"; | 89 public static final String DISABLE_LOFI_SNACKBAR = "disable-lo-fi-snackbar"; |
| 90 | 90 |
| 91 /** | 91 /** |
| 92 * Enable content snippets on the NTP | |
| 93 */ | |
| 94 public static final String ENABLE_NTP_SNIPPETS = "enable-ntp-snippets"; | |
| 95 | |
| 96 /** | |
| 97 * Enable interests on the NTP | 92 * Enable interests on the NTP |
| 98 */ | 93 */ |
| 99 public static final String ENABLE_INTERESTS = "enable-interests"; | 94 public static final String ENABLE_INTERESTS = "enable-interests"; |
| 100 | 95 |
| 101 /** | 96 /** |
| 102 * Forces the update menu item to show. | 97 * Forces the update menu item to show. |
| 103 */ | 98 */ |
| 104 public static final String FORCE_SHOW_UPDATE_MENU_ITEM = "force-show-update-
menu-item"; | 99 public static final String FORCE_SHOW_UPDATE_MENU_ITEM = "force-show-update-
menu-item"; |
| 105 | 100 |
| 106 /** | 101 /** |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 | 235 |
| 241 /** | 236 /** |
| 242 * Enable tab switcher in document mode (merged tabs and apps option). | 237 * Enable tab switcher in document mode (merged tabs and apps option). |
| 243 */ | 238 */ |
| 244 public static final String ENABLE_TAB_SWITCHER_IN_DOCUMENT_MODE = | 239 public static final String ENABLE_TAB_SWITCHER_IN_DOCUMENT_MODE = |
| 245 "enable-tab-switcher-in-document-mode"; | 240 "enable-tab-switcher-in-document-mode"; |
| 246 | 241 |
| 247 // Prevent instantiation. | 242 // Prevent instantiation. |
| 248 private ChromeSwitches() {} | 243 private ChromeSwitches() {} |
| 249 } | 244 } |
| OLD | NEW |