| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 | 47 |
| 48 // How much of the top controls need to be shown before they will auto show. | 48 // How much of the top controls need to be shown before they will auto show. |
| 49 public static final String TOP_CONTROLS_SHOW_THRESHOLD = "top-controls-show-
threshold"; | 49 public static final String TOP_CONTROLS_SHOW_THRESHOLD = "top-controls-show-
threshold"; |
| 50 | 50 |
| 51 // How much of the top controls need to be hidden before they will auto hide
. | 51 // How much of the top controls need to be hidden before they will auto hide
. |
| 52 public static final String TOP_CONTROLS_HIDE_THRESHOLD = "top-controls-hide-
threshold"; | 52 public static final String TOP_CONTROLS_HIDE_THRESHOLD = "top-controls-hide-
threshold"; |
| 53 | 53 |
| 54 // Native switch - chrome_switches::kEnableInstantExtendedAPI | 54 // Native switch - chrome_switches::kEnableInstantExtendedAPI |
| 55 public static final String ENABLE_INSTANT_EXTENDED_API = "enable-instant-ext
ended-api"; | 55 public static final String ENABLE_INSTANT_EXTENDED_API = "enable-instant-ext
ended-api"; |
| 56 | 56 |
| 57 // Native switch - content_switches::kEnableSpeechRecognition | |
| 58 public static final String ENABLE_SPEECH_RECOGNITION = "enable-speech-recogn
ition"; | |
| 59 | |
| 60 // Native switch - shell_switches::kDumpRenderTree | 57 // Native switch - shell_switches::kDumpRenderTree |
| 61 public static final String DUMP_RENDER_TREE = "dump-render-tree"; | 58 public static final String DUMP_RENDER_TREE = "dump-render-tree"; |
| 62 | 59 |
| 63 // Native switch - chrome_switches::kDisablePopupBlocking | 60 // Native switch - chrome_switches::kDisablePopupBlocking |
| 64 public static final String DISABLE_POPUP_BLOCKING = "disable-popup-blocking"
; | 61 public static final String DISABLE_POPUP_BLOCKING = "disable-popup-blocking"
; |
| 65 | 62 |
| 66 // Native switch - gfx_switches::kForceDeviceScaleFactor | 63 // Native switch - gfx_switches::kForceDeviceScaleFactor |
| 67 public static final String FORCE_DEVICE_SCALE_FACTOR = | 64 public static final String FORCE_DEVICE_SCALE_FACTOR = |
| 68 "force-device-scale-factor"; | 65 "force-device-scale-factor"; |
| 69 | 66 |
| 70 // Enable mouse hover emulation by holding your finger just over the screen. | 67 // Enable mouse hover emulation by holding your finger just over the screen. |
| 71 public static final String ENABLE_TOUCH_HOVER = "enable-touch-hover"; | 68 public static final String ENABLE_TOUCH_HOVER = "enable-touch-hover"; |
| 72 | 69 |
| 73 // Prevent instantiation. | 70 // Prevent instantiation. |
| 74 private ContentSwitches() {} | 71 private ContentSwitches() {} |
| 75 } | 72 } |
| OLD | NEW |