OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #include "content/public/common/content_switches.h" | 5 #include "content/public/common/content_switches.h" |
6 | 6 |
7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 | 8 |
9 namespace switches { | 9 namespace switches { |
10 | 10 |
(...skipping 989 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1000 const char kDisableGestureRequirementForMediaFullscreen[] = | 1000 const char kDisableGestureRequirementForMediaFullscreen[] = |
1001 "disable-gesture-requirement-for-media-fullscreen"; | 1001 "disable-gesture-requirement-for-media-fullscreen"; |
1002 | 1002 |
1003 // Disable user gesture requirement for media playback. | 1003 // Disable user gesture requirement for media playback. |
1004 const char kDisableGestureRequirementForMediaPlayback[] = | 1004 const char kDisableGestureRequirementForMediaPlayback[] = |
1005 "disable-gesture-requirement-for-media-playback"; | 1005 "disable-gesture-requirement-for-media-playback"; |
1006 | 1006 |
1007 // Disable history logging for media elements. | 1007 // Disable history logging for media elements. |
1008 const char kDisableMediaHistoryLogging[] = "disable-media-history"; | 1008 const char kDisableMediaHistoryLogging[] = "disable-media-history"; |
1009 | 1009 |
| 1010 // Disable the click delay by sending click events during double tap. |
| 1011 const char kDisableClickDelay[] = "disable-click-delay"; |
| 1012 |
1010 // Disable overscroll edge effects like those found in Android views. | 1013 // Disable overscroll edge effects like those found in Android views. |
1011 const char kDisableOverscrollEdgeEffect[] = "disable-overscroll-edge-effect"; | 1014 const char kDisableOverscrollEdgeEffect[] = "disable-overscroll-edge-effect"; |
1012 | 1015 |
1013 // WebRTC is enabled by default on Android. | 1016 // WebRTC is enabled by default on Android. |
1014 const char kDisableWebRTC[] = "disable-webrtc"; | 1017 const char kDisableWebRTC[] = "disable-webrtc"; |
1015 | 1018 |
1016 // Enable the recognition part of the Web Speech API. | 1019 // Enable the recognition part of the Web Speech API. |
1017 const char kEnableSpeechRecognition[] = "enable-speech-recognition"; | 1020 const char kEnableSpeechRecognition[] = "enable-speech-recognition"; |
1018 | 1021 |
1019 // Don't display any scrollbars. This is useful for Android WebView where | 1022 // Don't display any scrollbars. This is useful for Android WebView where |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1052 #endif | 1055 #endif |
1053 | 1056 |
1054 #if defined(OS_POSIX) | 1057 #if defined(OS_POSIX) |
1055 // Causes the child processes to cleanly exit via calling exit(). | 1058 // Causes the child processes to cleanly exit via calling exit(). |
1056 const char kChildCleanExit[] = "child-clean-exit"; | 1059 const char kChildCleanExit[] = "child-clean-exit"; |
1057 #endif | 1060 #endif |
1058 | 1061 |
1059 // Don't dump stuff here, follow the same order as the header. | 1062 // Don't dump stuff here, follow the same order as the header. |
1060 | 1063 |
1061 } // namespace switches | 1064 } // namespace switches |
OLD | NEW |