Chromium Code Reviews| 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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 92 /** | 92 /** |
| 93 * Disable Lo-Fi snackbar. | 93 * Disable Lo-Fi snackbar. |
| 94 */ | 94 */ |
| 95 public static final String DISABLE_LOFI_SNACKBAR = "disable-lo-fi-snackbar"; | 95 public static final String DISABLE_LOFI_SNACKBAR = "disable-lo-fi-snackbar"; |
| 96 | 96 |
| 97 /** | 97 /** |
| 98 * Enable content snippets on the NTP | 98 * Enable content snippets on the NTP |
| 99 */ | 99 */ |
| 100 public static final String ENABLE_NTP_SNIPPETS = "enable-ntp-snippets"; | 100 public static final String ENABLE_NTP_SNIPPETS = "enable-ntp-snippets"; |
| 101 | 101 |
| 102 /** | |
| 103 * Enable content snippets on the NTP | |
| 104 */ | |
| 105 public static final String ENABLE_NTP_INTERESTS = "enable-ntp-interests"; | |
|
newt (away)
2015/12/12 00:30:30
You could remove "ntp" from this flag. --enable-in
PEConn
2015/12/14 17:05:14
Done.
| |
| 106 | |
| 102 //////////////////////////////////////////////////////////////////////////// /////////////////// | 107 //////////////////////////////////////////////////////////////////////////// /////////////////// |
| 103 // Native Switches | 108 // Native Switches |
| 104 //////////////////////////////////////////////////////////////////////////// /////////////////// | 109 //////////////////////////////////////////////////////////////////////////// /////////////////// |
| 105 | 110 |
| 106 /** | 111 /** |
| 107 * Enable enhanced bookmarks feature. | 112 * Enable enhanced bookmarks feature. |
| 108 * Native switch - switches::kEnhancedBookmarksExperiment | 113 * Native switch - switches::kEnhancedBookmarksExperiment |
| 109 */ | 114 */ |
| 110 public static final String ENABLE_ENHANCED_BOOKMARKS = "enhanced-bookmarks-e xperiment"; | 115 public static final String ENABLE_ENHANCED_BOOKMARKS = "enhanced-bookmarks-e xperiment"; |
| 111 | 116 |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 197 /** | 202 /** |
| 198 * Disables Web Notification custom layouts. | 203 * Disables Web Notification custom layouts. |
| 199 * Native switch - switches::kDisableWebNotificationCustomLayouts | 204 * Native switch - switches::kDisableWebNotificationCustomLayouts |
| 200 */ | 205 */ |
| 201 public static final String DISABLE_WEB_NOTIFICATION_CUSTOM_LAYOUTS = | 206 public static final String DISABLE_WEB_NOTIFICATION_CUSTOM_LAYOUTS = |
| 202 "disable-web-notification-custom-layouts"; | 207 "disable-web-notification-custom-layouts"; |
| 203 | 208 |
| 204 // Prevent instantiation. | 209 // Prevent instantiation. |
| 205 private ChromeSwitches() {} | 210 private ChromeSwitches() {} |
| 206 } | 211 } |
| OLD | NEW |