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