| 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 867 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 878 | 878 |
| 879 // Disable the click delay by sending click events during double tap. | 879 // Disable the click delay by sending click events during double tap. |
| 880 const char kDisableClickDelay[] = "disable-click-delay"; | 880 const char kDisableClickDelay[] = "disable-click-delay"; |
| 881 | 881 |
| 882 // Disable overscroll edge effects like those found in Android views. | 882 // Disable overscroll edge effects like those found in Android views. |
| 883 const char kDisableOverscrollEdgeEffect[] = "disable-overscroll-edge-effect"; | 883 const char kDisableOverscrollEdgeEffect[] = "disable-overscroll-edge-effect"; |
| 884 | 884 |
| 885 // WebRTC is enabled by default on Android. | 885 // WebRTC is enabled by default on Android. |
| 886 const char kDisableWebRTC[] = "disable-webrtc"; | 886 const char kDisableWebRTC[] = "disable-webrtc"; |
| 887 | 887 |
| 888 // Enable the recognition part of the Web Speech API. | |
| 889 const char kEnableSpeechRecognition[] = "enable-speech-recognition"; | |
| 890 | |
| 891 // Always use the video overlay for the embedded video. | 888 // Always use the video overlay for the embedded video. |
| 892 // This switch is intended only for tests. | 889 // This switch is intended only for tests. |
| 893 const char kForceUseOverlayEmbeddedVideo[] = "force-use-overlay-embedded-video"; | 890 const char kForceUseOverlayEmbeddedVideo[] = "force-use-overlay-embedded-video"; |
| 894 | 891 |
| 895 // The telephony region (ISO country code) to use in phone number detection. | 892 // The telephony region (ISO country code) to use in phone number detection. |
| 896 const char kNetworkCountryIso[] = "network-country-iso"; | 893 const char kNetworkCountryIso[] = "network-country-iso"; |
| 897 | 894 |
| 898 // Enables remote debug over HTTP on the specified socket name. | 895 // Enables remote debug over HTTP on the specified socket name. |
| 899 const char kRemoteDebuggingSocketName[] = "remote-debugging-socket-name"; | 896 const char kRemoteDebuggingSocketName[] = "remote-debugging-socket-name"; |
| 900 | 897 |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 942 // Enable the Win32K process mitigation policy for renderer processes which | 939 // Enable the Win32K process mitigation policy for renderer processes which |
| 943 // prevents them from invoking user32 and gdi32 system calls which enter | 940 // prevents them from invoking user32 and gdi32 system calls which enter |
| 944 // the kernel. This is only supported on Windows 8 and beyond. | 941 // the kernel. This is only supported on Windows 8 and beyond. |
| 945 const char kEnableWin32kRendererLockDown[] | 942 const char kEnableWin32kRendererLockDown[] |
| 946 = "enable_win32k_renderer_lockdown"; | 943 = "enable_win32k_renderer_lockdown"; |
| 947 #endif | 944 #endif |
| 948 | 945 |
| 949 // Don't dump stuff here, follow the same order as the header. | 946 // Don't dump stuff here, follow the same order as the header. |
| 950 | 947 |
| 951 } // namespace switches | 948 } // namespace switches |
| OLD | NEW |