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