| 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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 /** | 89 /** |
| 90 * Disable Lo-Fi snackbar. | 90 * Disable Lo-Fi snackbar. |
| 91 */ | 91 */ |
| 92 public static final String DISABLE_LOFI_SNACKBAR = "disable-lo-fi-snackbar"; | 92 public static final String DISABLE_LOFI_SNACKBAR = "disable-lo-fi-snackbar"; |
| 93 | 93 |
| 94 /** | 94 /** |
| 95 * Enable content snippets on the NTP | 95 * Enable content snippets on the NTP |
| 96 */ | 96 */ |
| 97 public static final String ENABLE_NTP_SNIPPETS = "enable-ntp-snippets"; | 97 public static final String ENABLE_NTP_SNIPPETS = "enable-ntp-snippets"; |
| 98 | 98 |
| 99 /** |
| 100 * Enable content snippets on the NTP |
| 101 */ |
| 102 public static final String ENABLE_NTP_INTERESTS = "enable-interests"; |
| 103 |
| 99 ////////////////////////////////////////////////////////////////////////////
/////////////////// | 104 ////////////////////////////////////////////////////////////////////////////
/////////////////// |
| 100 // Native Switches | 105 // Native Switches |
| 101 ////////////////////////////////////////////////////////////////////////////
/////////////////// | 106 ////////////////////////////////////////////////////////////////////////////
/////////////////// |
| 102 | 107 |
| 103 /** | 108 /** |
| 104 * Enable enhanced bookmarks feature. | 109 * Enable enhanced bookmarks feature. |
| 105 * Native switch - switches::kEnhancedBookmarksExperiment | 110 * Native switch - switches::kEnhancedBookmarksExperiment |
| 106 */ | 111 */ |
| 107 public static final String ENABLE_ENHANCED_BOOKMARKS = "enhanced-bookmarks-e
xperiment"; | 112 public static final String ENABLE_ENHANCED_BOOKMARKS = "enhanced-bookmarks-e
xperiment"; |
| 108 | 113 |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 | 205 |
| 201 /** | 206 /** |
| 202 * Enable tab switcher in document mode (merged tabs and apps option). | 207 * Enable tab switcher in document mode (merged tabs and apps option). |
| 203 */ | 208 */ |
| 204 public static final String ENABLE_TAB_SWITCHER_IN_DOCUMENT_MODE = | 209 public static final String ENABLE_TAB_SWITCHER_IN_DOCUMENT_MODE = |
| 205 "enable-tab-switcher-in-document-mode"; | 210 "enable-tab-switcher-in-document-mode"; |
| 206 | 211 |
| 207 // Prevent instantiation. | 212 // Prevent instantiation. |
| 208 private ChromeSwitches() {} | 213 private ChromeSwitches() {} |
| 209 } | 214 } |
| OLD | NEW |