Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1600)

Side by Side Diff: chrome/android/java/src/org/chromium/chrome/browser/ChromeSwitches.java

Issue 1459593002: Added a UI for the Interests Prototype. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 92 * Enable content snippets on the NTP
93 */ 93 */
94 public static final String ENABLE_NTP_SNIPPETS = "enable-ntp-snippets"; 94 public static final String ENABLE_NTP_SNIPPETS = "enable-ntp-snippets";
95 95
96 /**
97 * Enable content snippets on the NTP
newt (away) 2015/12/14 21:18:39 fix javadoc
PEConn 2015/12/15 11:50:15 Done.
98 */
99 public static final String ENABLE_NTP_INTERESTS = "enable-interests";
newt (away) 2015/12/14 21:18:39 s/ENABLE_NTP_INTERESTS/ENABLE_INTERESTS/
PEConn 2015/12/15 11:50:15 Done.
100
96 //////////////////////////////////////////////////////////////////////////// /////////////////// 101 //////////////////////////////////////////////////////////////////////////// ///////////////////
97 // Native Switches 102 // Native Switches
98 //////////////////////////////////////////////////////////////////////////// /////////////////// 103 //////////////////////////////////////////////////////////////////////////// ///////////////////
99 104
100 /** 105 /**
101 * Enable enhanced bookmarks feature. 106 * Enable enhanced bookmarks feature.
102 * Native switch - switches::kEnhancedBookmarksExperiment 107 * Native switch - switches::kEnhancedBookmarksExperiment
103 */ 108 */
104 public static final String ENABLE_ENHANCED_BOOKMARKS = "enhanced-bookmarks-e xperiment"; 109 public static final String ENABLE_ENHANCED_BOOKMARKS = "enhanced-bookmarks-e xperiment";
105 110
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 210
206 /** 211 /**
207 * Enable tab switcher in document mode (merged tabs and apps option). 212 * Enable tab switcher in document mode (merged tabs and apps option).
208 */ 213 */
209 public static final String ENABLE_TAB_SWITCHER_IN_DOCUMENT_MODE = 214 public static final String ENABLE_TAB_SWITCHER_IN_DOCUMENT_MODE =
210 "enable-tab-switcher-in-document-mode"; 215 "enable-tab-switcher-in-document-mode";
211 216
212 // Prevent instantiation. 217 // Prevent instantiation.
213 private ChromeSwitches() {} 218 private ChromeSwitches() {}
214 } 219 }
OLDNEW
« no previous file with comments | « chrome/android/java/res/values/dimens.xml ('k') | chrome/android/java/src/org/chromium/chrome/browser/UrlConstants.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698