| 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 921 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 932 | 932 |
| 933 // Disable the pull-to-refresh effect when vertically overscrolling content. | 933 // Disable the pull-to-refresh effect when vertically overscrolling content. |
| 934 const char kDisablePullToRefreshEffect[] = "disable-pull-to-refresh-effect"; | 934 const char kDisablePullToRefreshEffect[] = "disable-pull-to-refresh-effect"; |
| 935 | 935 |
| 936 // Disable the locking feature of the screen orientation API. | 936 // Disable the locking feature of the screen orientation API. |
| 937 const char kDisableScreenOrientationLock[] = "disable-screen-orientation-lock"; | 937 const char kDisableScreenOrientationLock[] = "disable-screen-orientation-lock"; |
| 938 | 938 |
| 939 // WebRTC is enabled by default on Android. | 939 // WebRTC is enabled by default on Android. |
| 940 const char kDisableWebRTC[] = "disable-webrtc"; | 940 const char kDisableWebRTC[] = "disable-webrtc"; |
| 941 | 941 |
| 942 // Enable external animation system for Android compositor. |
| 943 // See also kEnableCompositorAnimationTimelines for renderer compositors. |
| 944 const char kEnableAndroidCompositorAnimationTimelines[] = |
| 945 "enable-android-compositor-animation-timelines"; |
| 946 |
| 942 // The telephony region (ISO country code) to use in phone number detection. | 947 // The telephony region (ISO country code) to use in phone number detection. |
| 943 const char kNetworkCountryIso[] = "network-country-iso"; | 948 const char kNetworkCountryIso[] = "network-country-iso"; |
| 944 | 949 |
| 945 // Enables remote debug over HTTP on the specified socket name. | 950 // Enables remote debug over HTTP on the specified socket name. |
| 946 const char kRemoteDebuggingSocketName[] = "remote-debugging-socket-name"; | 951 const char kRemoteDebuggingSocketName[] = "remote-debugging-socket-name"; |
| 947 | 952 |
| 948 // Block ChildProcessMain thread of the renderer's ChildProcessService until a | 953 // Block ChildProcessMain thread of the renderer's ChildProcessService until a |
| 949 // Java debugger is attached. | 954 // Java debugger is attached. |
| 950 const char kRendererWaitForJavaDebugger[] = "renderer-wait-for-java-debugger"; | 955 const char kRendererWaitForJavaDebugger[] = "renderer-wait-for-java-debugger"; |
| 951 #endif | 956 #endif |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1005 // Windows Vista and later. | 1010 // Windows Vista and later. |
| 1006 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 1011 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; |
| 1007 #endif | 1012 #endif |
| 1008 | 1013 |
| 1009 // Enables the use of NPAPI plugins. | 1014 // Enables the use of NPAPI plugins. |
| 1010 const char kEnableNpapi[] = "enable-npapi"; | 1015 const char kEnableNpapi[] = "enable-npapi"; |
| 1011 | 1016 |
| 1012 // Don't dump stuff here, follow the same order as the header. | 1017 // Don't dump stuff here, follow the same order as the header. |
| 1013 | 1018 |
| 1014 } // namespace switches | 1019 } // namespace switches |
| OLD | NEW |