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