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

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

Issue 2874933008: Adds animation as feature variation to keyboard accessory. (Closed)
Patch Set: Switch to base/metrics/field_trial_params.h API from variations:: Created 3 years, 7 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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 117
118 /** 118 /**
119 * Specifies Android NTP behaviour on clicking a Most{Visited/Likely} tile. 119 * Specifies Android NTP behaviour on clicking a Most{Visited/Likely} tile.
120 * Specifically whether to refocus an existing tab with the same url or host or to load the url 120 * Specifically whether to refocus an existing tab with the same url or host or to load the url
121 * in the current tab. 121 * in the current tab.
122 * Native switch - switches::kNtpSwitchToExistingTab 122 * Native switch - switches::kNtpSwitchToExistingTab
123 */ 123 */
124 public static final String NTP_SWITCH_TO_EXISTING_TAB = "ntp-switch-to-exist ing-tab"; 124 public static final String NTP_SWITCH_TO_EXISTING_TAB = "ntp-switch-to-exist ing-tab";
125 125
126 /** 126 /**
127 * Enable keyboard accessory view that shows autofill suggestions on top of the keyboard.
128 * Native switch - autofill::switches::kEnableAccessorySuggestionView
129 */
130 public static final String ENABLE_AUTOFILL_KEYBOARD_ACCESSORY =
131 "enable-autofill-keyboard-accessory-view";
132
133 /**
134 * Enables overscroll of the on screen keyboard. With this flag on, the OSK will only resize the 127 * Enables overscroll of the on screen keyboard. With this flag on, the OSK will only resize the
135 * visual viewport. 128 * visual viewport.
136 * Native switch - switches::kEnableOSKOverscroll 129 * Native switch - switches::kEnableOSKOverscroll
137 */ 130 */
138 public static final String ENABLE_OSK_OVERSCROLL = "enable-osk-overscroll"; 131 public static final String ENABLE_OSK_OVERSCROLL = "enable-osk-overscroll";
139 132
140 /** 133 /**
141 * Enables hung renderer InfoBar activation for unresponsive web content. 134 * Enables hung renderer InfoBar activation for unresponsive web content.
142 * Native switch - switches::kEnableHungRendererInfoBar 135 * Native switch - switches::kEnableHungRendererInfoBar
143 */ 136 */
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 */ 184 */
192 public static final String CHECK_FOR_WEB_MANIFEST_UPDATE_ON_STARTUP = 185 public static final String CHECK_FOR_WEB_MANIFEST_UPDATE_ON_STARTUP =
193 "check-for-web-manifest-update-on-startup"; 186 "check-for-web-manifest-update-on-startup";
194 187
195 /** Enable Vr Shell development environment. */ 188 /** Enable Vr Shell development environment. */
196 public static final String ENABLE_VR_SHELL_DEV = "enable-vr-shell-dev"; 189 public static final String ENABLE_VR_SHELL_DEV = "enable-vr-shell-dev";
197 190
198 // Prevent instantiation. 191 // Prevent instantiation.
199 private ChromeSwitches() {} 192 private ChromeSwitches() {}
200 } 193 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698