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

Side by Side Diff: content/public/android/java/src/org/chromium/content/common/ContentSwitches.java

Issue 699333003: Support InputMethodManager#updateCursorAnchorInfo for Android 5.0 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase before splitting this CL. Created 5 years, 8 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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.content.common; 5 package org.chromium.content.common;
6 6
7 /** 7 /**
8 * Contains all of the command line switches that are specific to the content/ 8 * Contains all of the command line switches that are specific to the content/
9 * portion of Chromium on Android. 9 * portion of Chromium on Android.
10 */ 10 */
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 // Native switch - gfx_switches::kForceDeviceScaleFactor 62 // Native switch - gfx_switches::kForceDeviceScaleFactor
63 public static final String FORCE_DEVICE_SCALE_FACTOR = 63 public static final String FORCE_DEVICE_SCALE_FACTOR =
64 "force-device-scale-factor"; 64 "force-device-scale-factor";
65 65
66 // Enable mouse hover emulation by holding your finger just over the screen. 66 // Enable mouse hover emulation by holding your finger just over the screen.
67 public static final String ENABLE_TOUCH_HOVER = "enable-touch-hover"; 67 public static final String ENABLE_TOUCH_HOVER = "enable-touch-hover";
68 68
69 // Native switch kEnableCredentialManagerAPI 69 // Native switch kEnableCredentialManagerAPI
70 public static final String ENABLE_CREDENTIAL_MANAGER_API = "enable-credentia l-manager-api"; 70 public static final String ENABLE_CREDENTIAL_MANAGER_API = "enable-credentia l-manager-api";
71 71
72 // Enable CursorAnchorInfo API that is added in Android 5.0.
73 public static final String ENABLE_CURSOR_ANCHOR_INFO =
74 "enable-cursor-anchor-info";
75
72 // Prevent instantiation. 76 // Prevent instantiation.
73 private ContentSwitches() {} 77 private ContentSwitches() {}
74 } 78 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698