| 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 namespace switches { | 7 namespace switches { |
| 8 | 8 |
| 9 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to | 9 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to |
| 10 // have an effect. 0 disables MSAA. | 10 // have an effect. 0 disables MSAA. |
| (...skipping 901 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 912 | 912 |
| 913 // Disable overscroll edge effects like those found in Android views. | 913 // Disable overscroll edge effects like those found in Android views. |
| 914 const char kDisableOverscrollEdgeEffect[] = "disable-overscroll-edge-effect"; | 914 const char kDisableOverscrollEdgeEffect[] = "disable-overscroll-edge-effect"; |
| 915 | 915 |
| 916 // Disable the pull-to-refresh effect when vertically overscrolling content. | 916 // Disable the pull-to-refresh effect when vertically overscrolling content. |
| 917 const char kDisablePullToRefreshEffect[] = "disable-pull-to-refresh-effect"; | 917 const char kDisablePullToRefreshEffect[] = "disable-pull-to-refresh-effect"; |
| 918 | 918 |
| 919 // WebRTC is enabled by default on Android. | 919 // WebRTC is enabled by default on Android. |
| 920 const char kDisableWebRTC[] = "disable-webrtc"; | 920 const char kDisableWebRTC[] = "disable-webrtc"; |
| 921 | 921 |
| 922 // Always use the video overlay for the embedded video. | |
| 923 // This switch is intended only for tests. | |
| 924 const char kForceUseOverlayEmbeddedVideo[] = "force-use-overlay-embedded-video"; | |
| 925 | |
| 926 // The telephony region (ISO country code) to use in phone number detection. | 922 // The telephony region (ISO country code) to use in phone number detection. |
| 927 const char kNetworkCountryIso[] = "network-country-iso"; | 923 const char kNetworkCountryIso[] = "network-country-iso"; |
| 928 | 924 |
| 929 // Enables remote debug over HTTP on the specified socket name. | 925 // Enables remote debug over HTTP on the specified socket name. |
| 930 const char kRemoteDebuggingSocketName[] = "remote-debugging-socket-name"; | 926 const char kRemoteDebuggingSocketName[] = "remote-debugging-socket-name"; |
| 931 | 927 |
| 932 // Block ChildProcessMain thread of the renderer's ChildProcessService until a | 928 // Block ChildProcessMain thread of the renderer's ChildProcessService until a |
| 933 // Java debugger is attached. | 929 // Java debugger is attached. |
| 934 const char kRendererWaitForJavaDebugger[] = "renderer-wait-for-java-debugger"; | 930 const char kRendererWaitForJavaDebugger[] = "renderer-wait-for-java-debugger"; |
| 935 #endif | 931 #endif |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 985 const char kEnableNpapi[] = "enable-npapi"; | 981 const char kEnableNpapi[] = "enable-npapi"; |
| 986 | 982 |
| 987 #if defined(ENABLE_PLUGINS) | 983 #if defined(ENABLE_PLUGINS) |
| 988 // Enables the plugin power saver feature. | 984 // Enables the plugin power saver feature. |
| 989 const char kEnablePluginPowerSaver[] = "enable-plugin-power-saver"; | 985 const char kEnablePluginPowerSaver[] = "enable-plugin-power-saver"; |
| 990 #endif | 986 #endif |
| 991 | 987 |
| 992 // Don't dump stuff here, follow the same order as the header. | 988 // Don't dump stuff here, follow the same order as the header. |
| 993 | 989 |
| 994 } // namespace switches | 990 } // namespace switches |
| OLD | NEW |