| 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 /** | 80 /** |
| 81 * Disable bottom infobar-like Reader Mode panel. | 81 * Disable bottom infobar-like Reader Mode panel. |
| 82 */ | 82 */ |
| 83 public static final String DISABLE_READER_MODE_BOTTOM_BAR = "disable-reader-
mode-bottom-bar"; | 83 public static final String DISABLE_READER_MODE_BOTTOM_BAR = "disable-reader-
mode-bottom-bar"; |
| 84 | 84 |
| 85 /** | 85 /** |
| 86 * Disable Lo-Fi snackbar. | 86 * Disable Lo-Fi snackbar. |
| 87 */ | 87 */ |
| 88 public static final String DISABLE_LOFI_SNACKBAR = "disable-lo-fi-snackbar"; | 88 public static final String DISABLE_LOFI_SNACKBAR = "disable-lo-fi-snackbar"; |
| 89 | 89 |
| 90 /** |
| 91 * Enable Physical Web feature. |
| 92 */ |
| 93 public static final String ENABLE_PHYSICAL_WEB = "enable-physical-web"; |
| 94 |
| 90 ////////////////////////////////////////////////////////////////////////////
/////////////////// | 95 ////////////////////////////////////////////////////////////////////////////
/////////////////// |
| 91 // Native Switches | 96 // Native Switches |
| 92 ////////////////////////////////////////////////////////////////////////////
/////////////////// | 97 ////////////////////////////////////////////////////////////////////////////
/////////////////// |
| 93 | 98 |
| 94 /** | 99 /** |
| 95 * Enable enhanced bookmarks feature. | 100 * Enable enhanced bookmarks feature. |
| 96 * Native switch - switches::kEnhancedBookmarksExperiment | 101 * Native switch - switches::kEnhancedBookmarksExperiment |
| 97 */ | 102 */ |
| 98 public static final String ENABLE_ENHANCED_BOOKMARKS = "enhanced-bookmarks-e
xperiment"; | 103 public static final String ENABLE_ENHANCED_BOOKMARKS = "enhanced-bookmarks-e
xperiment"; |
| 99 | 104 |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 | 178 |
| 174 /** | 179 /** |
| 175 * Enable theme-color support in ChromeTabbedActivity. | 180 * Enable theme-color support in ChromeTabbedActivity. |
| 176 */ | 181 */ |
| 177 public static final String ENABLE_THEME_COLOR_IN_TABBED_MODE = | 182 public static final String ENABLE_THEME_COLOR_IN_TABBED_MODE = |
| 178 "enable-theme-color-in-tabbed-mode"; | 183 "enable-theme-color-in-tabbed-mode"; |
| 179 | 184 |
| 180 // Prevent instantiation. | 185 // Prevent instantiation. |
| 181 private ChromeSwitches() {} | 186 private ChromeSwitches() {} |
| 182 } | 187 } |
| OLD | NEW |