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 992 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1003 const char kDisableGestureRequirementForMediaFullscreen[] = | 1003 const char kDisableGestureRequirementForMediaFullscreen[] = |
1004 "disable-gesture-requirement-for-media-fullscreen"; | 1004 "disable-gesture-requirement-for-media-fullscreen"; |
1005 | 1005 |
1006 // Disable user gesture requirement for media playback. | 1006 // Disable user gesture requirement for media playback. |
1007 const char kDisableGestureRequirementForMediaPlayback[] = | 1007 const char kDisableGestureRequirementForMediaPlayback[] = |
1008 "disable-gesture-requirement-for-media-playback"; | 1008 "disable-gesture-requirement-for-media-playback"; |
1009 | 1009 |
1010 // Disable history logging for media elements. | 1010 // Disable history logging for media elements. |
1011 const char kDisableMediaHistoryLogging[] = "disable-media-history"; | 1011 const char kDisableMediaHistoryLogging[] = "disable-media-history"; |
1012 | 1012 |
| 1013 // Disable the click delay by sending click events during double tap. |
| 1014 const char kDisableClickDelay[] = "disable-click-delay"; |
| 1015 |
1013 // Disable overscroll edge effects like those found in Android views. | 1016 // Disable overscroll edge effects like those found in Android views. |
1014 const char kDisableOverscrollEdgeEffect[] = "disable-overscroll-edge-effect"; | 1017 const char kDisableOverscrollEdgeEffect[] = "disable-overscroll-edge-effect"; |
1015 | 1018 |
1016 // WebRTC is enabled by default on Android. | 1019 // WebRTC is enabled by default on Android. |
1017 const char kDisableWebRTC[] = "disable-webrtc"; | 1020 const char kDisableWebRTC[] = "disable-webrtc"; |
1018 | 1021 |
1019 // Enable the recognition part of the Web Speech API. | 1022 // Enable the recognition part of the Web Speech API. |
1020 const char kEnableSpeechRecognition[] = "enable-speech-recognition"; | 1023 const char kEnableSpeechRecognition[] = "enable-speech-recognition"; |
1021 | 1024 |
1022 // Don't display any scrollbars. This is useful for Android WebView where | 1025 // 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... |
1055 #endif | 1058 #endif |
1056 | 1059 |
1057 #if defined(OS_POSIX) | 1060 #if defined(OS_POSIX) |
1058 // Causes the child processes to cleanly exit via calling exit(). | 1061 // Causes the child processes to cleanly exit via calling exit(). |
1059 const char kChildCleanExit[] = "child-clean-exit"; | 1062 const char kChildCleanExit[] = "child-clean-exit"; |
1060 #endif | 1063 #endif |
1061 | 1064 |
1062 // Don't dump stuff here, follow the same order as the header. | 1065 // Don't dump stuff here, follow the same order as the header. |
1063 | 1066 |
1064 } // namespace switches | 1067 } // namespace switches |
OLD | NEW |