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

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

Issue 1386403003: Resize only the virtual viewport when the OSK triggers a resize. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: s/InsetConsumerView/InsetObserverView Created 4 years, 9 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 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 public static final String DISABLE_OFFLINE_PAGES = "disable-offline-pages"; 197 public static final String DISABLE_OFFLINE_PAGES = "disable-offline-pages";
198 198
199 /** 199 /**
200 * Enable keyboard accessory view that shows autofill suggestions on top of the keyboard. 200 * Enable keyboard accessory view that shows autofill suggestions on top of the keyboard.
201 * Native switch - autofill::switches::kEnableAccessorySuggestionView 201 * Native switch - autofill::switches::kEnableAccessorySuggestionView
202 */ 202 */
203 public static final String ENABLE_AUTOFILL_KEYBOARD_ACCESSORY = 203 public static final String ENABLE_AUTOFILL_KEYBOARD_ACCESSORY =
204 "enable-autofill-keyboard-accessory-view"; 204 "enable-autofill-keyboard-accessory-view";
205 205
206 /** 206 /**
207 * Enables overscroll of the on screen keyboard. With this flag on, the OSK will only resize the
208 * visual viewport.
209 * Native switch - switches::kEnableOSKOverscroll
210 */
211 public static final String ENABLE_OSK_OVERSCROLL = "enable-osk-overscroll";
212
213 /**
207 * Enables hung renderer InfoBar activation for unresponsive web content. 214 * Enables hung renderer InfoBar activation for unresponsive web content.
208 * Native switch - switches::kEnableHungRendererInfoBar 215 * Native switch - switches::kEnableHungRendererInfoBar
209 */ 216 */
210 public static final String ENABLE_HUNG_RENDERER_INFOBAR = "enable-hung-rende rer-infobar"; 217 public static final String ENABLE_HUNG_RENDERER_INFOBAR = "enable-hung-rende rer-infobar";
211 218
212 /** 219 /**
213 * Enables Web Notification custom layouts. 220 * Enables Web Notification custom layouts.
214 * Native switch - switches::kEnableWebNotificationCustomLayouts 221 * Native switch - switches::kEnableWebNotificationCustomLayouts
215 */ 222 */
216 public static final String ENABLE_WEB_NOTIFICATION_CUSTOM_LAYOUTS = 223 public static final String ENABLE_WEB_NOTIFICATION_CUSTOM_LAYOUTS =
(...skipping 27 matching lines...) Expand all
244 251
245 /** 252 /**
246 * Enable tab switcher in document mode (merged tabs and apps option). 253 * Enable tab switcher in document mode (merged tabs and apps option).
247 */ 254 */
248 public static final String ENABLE_TAB_SWITCHER_IN_DOCUMENT_MODE = 255 public static final String ENABLE_TAB_SWITCHER_IN_DOCUMENT_MODE =
249 "enable-tab-switcher-in-document-mode"; 256 "enable-tab-switcher-in-document-mode";
250 257
251 // Prevent instantiation. 258 // Prevent instantiation.
252 private ChromeSwitches() {} 259 private ChromeSwitches() {}
253 } 260 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698