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 869 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
880 | 880 |
881 // Disable overscroll edge effects like those found in Android views. | 881 // Disable overscroll edge effects like those found in Android views. |
882 const char kDisableOverscrollEdgeEffect[] = "disable-overscroll-edge-effect"; | 882 const char kDisableOverscrollEdgeEffect[] = "disable-overscroll-edge-effect"; |
883 | 883 |
884 // Disable the pull-to-refresh effect when vertically overscrolling content. | 884 // Disable the pull-to-refresh effect when vertically overscrolling content. |
885 const char kDisablePullToRefreshEffect[] = "disable-pull-to-refresh-effect"; | 885 const char kDisablePullToRefreshEffect[] = "disable-pull-to-refresh-effect"; |
886 | 886 |
887 // WebRTC is enabled by default on Android. | 887 // WebRTC is enabled by default on Android. |
888 const char kDisableWebRTC[] = "disable-webrtc"; | 888 const char kDisableWebRTC[] = "disable-webrtc"; |
889 | 889 |
| 890 // Enable CursorAnchorInfo API that is added in Android 5.0. |
| 891 const char kEnableCursorAnchorInfo[] = "enable-cursor-anchor-info"; |
| 892 |
890 // Always use the video overlay for the embedded video. | 893 // Always use the video overlay for the embedded video. |
891 // This switch is intended only for tests. | 894 // This switch is intended only for tests. |
892 const char kForceUseOverlayEmbeddedVideo[] = "force-use-overlay-embedded-video"; | 895 const char kForceUseOverlayEmbeddedVideo[] = "force-use-overlay-embedded-video"; |
893 | 896 |
894 // The telephony region (ISO country code) to use in phone number detection. | 897 // The telephony region (ISO country code) to use in phone number detection. |
895 const char kNetworkCountryIso[] = "network-country-iso"; | 898 const char kNetworkCountryIso[] = "network-country-iso"; |
896 | 899 |
897 // Enables remote debug over HTTP on the specified socket name. | 900 // Enables remote debug over HTTP on the specified socket name. |
898 const char kRemoteDebuggingSocketName[] = "remote-debugging-socket-name"; | 901 const char kRemoteDebuggingSocketName[] = "remote-debugging-socket-name"; |
899 | 902 |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
959 const char kEnableNpapi[] = "enable-npapi"; | 962 const char kEnableNpapi[] = "enable-npapi"; |
960 | 963 |
961 #if defined(ENABLE_PLUGINS) | 964 #if defined(ENABLE_PLUGINS) |
962 // Enables the plugin power saver feature. | 965 // Enables the plugin power saver feature. |
963 const char kEnablePluginPowerSaver[] = "enable-plugin-power-saver"; | 966 const char kEnablePluginPowerSaver[] = "enable-plugin-power-saver"; |
964 #endif | 967 #endif |
965 | 968 |
966 // Don't dump stuff here, follow the same order as the header. | 969 // Don't dump stuff here, follow the same order as the header. |
967 | 970 |
968 } // namespace switches | 971 } // namespace switches |
OLD | NEW |