| 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 877 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 888 | 888 |
| 889 // The telephony region (ISO country code) to use in phone number detection. | 889 // The telephony region (ISO country code) to use in phone number detection. |
| 890 const char kNetworkCountryIso[] = "network-country-iso"; | 890 const char kNetworkCountryIso[] = "network-country-iso"; |
| 891 | 891 |
| 892 // Enables remote debug over HTTP on the specified socket name. | 892 // Enables remote debug over HTTP on the specified socket name. |
| 893 const char kRemoteDebuggingSocketName[] = "remote-debugging-socket-name"; | 893 const char kRemoteDebuggingSocketName[] = "remote-debugging-socket-name"; |
| 894 | 894 |
| 895 // Block ChildProcessMain thread of the renderer's ChildProcessService until a | 895 // Block ChildProcessMain thread of the renderer's ChildProcessService until a |
| 896 // Java debugger is attached. | 896 // Java debugger is attached. |
| 897 const char kRendererWaitForJavaDebugger[] = "renderer-wait-for-java-debugger"; | 897 const char kRendererWaitForJavaDebugger[] = "renderer-wait-for-java-debugger"; |
| 898 |
| 899 // Enables overscrolling for the OSK on Android. |
| 900 const char kEnableOSKOverscroll[] = "enable-osk-overscroll"; |
| 898 #endif | 901 #endif |
| 899 | 902 |
| 900 // Enable the aggressive flushing of DOM Storage to minimize data loss. | 903 // Enable the aggressive flushing of DOM Storage to minimize data loss. |
| 901 const char kEnableAggressiveDOMStorageFlushing[] = | 904 const char kEnableAggressiveDOMStorageFlushing[] = |
| 902 "enable-aggressive-domstorage-flushing"; | 905 "enable-aggressive-domstorage-flushing"; |
| 903 | 906 |
| 904 // Disable web audio API. | 907 // Disable web audio API. |
| 905 const char kDisableWebAudio[] = "disable-webaudio"; | 908 const char kDisableWebAudio[] = "disable-webaudio"; |
| 906 | 909 |
| 907 #if defined(OS_CHROMEOS) | 910 #if defined(OS_CHROMEOS) |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 958 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; | 961 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; |
| 959 | 962 |
| 960 // Enables the exporting of the tracing events to ETW. This is only supported on | 963 // Enables the exporting of the tracing events to ETW. This is only supported on |
| 961 // Windows Vista and later. | 964 // Windows Vista and later. |
| 962 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 965 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; |
| 963 #endif | 966 #endif |
| 964 | 967 |
| 965 // Don't dump stuff here, follow the same order as the header. | 968 // Don't dump stuff here, follow the same order as the header. |
| 966 | 969 |
| 967 } // namespace switches | 970 } // namespace switches |
| OLD | NEW |