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

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

Issue 1538573004: Expose a Java API for base/feature_list.h. (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 2015 The Chromium Authors. All rights reserved.
cco3 2015/12/18 18:08:03 Is this change intended?
Alexei Svitkine (slow) 2015/12/18 18:50:37 Nope! Removed.
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 */
11 public abstract class ChromeSwitches { 11 public abstract class ChromeSwitches {
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after
225 225
226 /** 226 /**
227 * Enable tab switcher in document mode (merged tabs and apps option). 227 * Enable tab switcher in document mode (merged tabs and apps option).
228 */ 228 */
229 public static final String ENABLE_TAB_SWITCHER_IN_DOCUMENT_MODE = 229 public static final String ENABLE_TAB_SWITCHER_IN_DOCUMENT_MODE =
230 "enable-tab-switcher-in-document-mode"; 230 "enable-tab-switcher-in-document-mode";
231 231
232 // Prevent instantiation. 232 // Prevent instantiation.
233 private ChromeSwitches() {} 233 private ChromeSwitches() {}
234 } 234 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698