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

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

Issue 1256343004: [Android] Add phone progress bar animation behind a flag. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: telemetry_perf_unittest fix attempt #1 Created 5 years, 4 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 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 * Enable the menu trimming that removes "Bookmarks" and "Recent tabs" menu items. 172 * Enable the menu trimming that removes "Bookmarks" and "Recent tabs" menu items.
173 */ 173 */
174 public static final String ENABLE_MENU_TRIMMING = "enable-menu-trimming"; 174 public static final String ENABLE_MENU_TRIMMING = "enable-menu-trimming";
175 175
176 /** 176 /**
177 * Disable speculative TCP/IP preconnection. 177 * Disable speculative TCP/IP preconnection.
178 * Native switch - switches::kDisablePreconnect 178 * Native switch - switches::kDisablePreconnect
179 */ 179 */
180 public static final String DISABLE_PRECONNECT = "disable-preconnect"; 180 public static final String DISABLE_PRECONNECT = "disable-preconnect";
181 181
182 /**
183 * Specifies Android phone page loading progress bar animation.
184 * Native switch - switches::kProgressBarAnimation
185 */
186 public static final String PROGRESS_BAR_ANIMATION = "progress-bar-animation" ;
187
182 // Prevent instantiation. 188 // Prevent instantiation.
183 private ChromeSwitches() {} 189 private ChromeSwitches() {}
184 } 190 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698