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

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

Issue 1326593006: Add the Physical Web to Chrome on Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Suppress unconfirmed cast warning Created 5 years, 2 months 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698