| OLD | NEW |
| 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 Loading... |
| 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 // Native switch kDisableGestureRequirementForMediaPlayback |
| 73 public static final String DISABLE_GESTURE_REQUIREMENT_FOR_MEDIA_PLAYBACK = |
| 74 "disable-gesture-requirement-for-media-playback"; |
| 75 |
| 72 // Prevent instantiation. | 76 // Prevent instantiation. |
| 73 private ContentSwitches() {} | 77 private ContentSwitches() {} |
| 74 } | 78 } |
| OLD | NEW |