| 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 "build/build_config.h" | 5 #include "build/build_config.h" |
| 6 #include "content/public/common/content_switches.h" | 6 #include "content/public/common/content_switches.h" |
| 7 | 7 |
| 8 namespace switches { | 8 namespace switches { |
| 9 | 9 |
| 10 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to | 10 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to |
| (...skipping 914 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 925 | 925 |
| 926 // The telephony region (ISO country code) to use in phone number detection. | 926 // The telephony region (ISO country code) to use in phone number detection. |
| 927 const char kNetworkCountryIso[] = "network-country-iso"; | 927 const char kNetworkCountryIso[] = "network-country-iso"; |
| 928 | 928 |
| 929 // Enables remote debug over HTTP on the specified socket name. | 929 // Enables remote debug over HTTP on the specified socket name. |
| 930 const char kRemoteDebuggingSocketName[] = "remote-debugging-socket-name"; | 930 const char kRemoteDebuggingSocketName[] = "remote-debugging-socket-name"; |
| 931 | 931 |
| 932 // Block ChildProcessMain thread of the renderer's ChildProcessService until a | 932 // Block ChildProcessMain thread of the renderer's ChildProcessService until a |
| 933 // Java debugger is attached. | 933 // Java debugger is attached. |
| 934 const char kRendererWaitForJavaDebugger[] = "renderer-wait-for-java-debugger"; | 934 const char kRendererWaitForJavaDebugger[] = "renderer-wait-for-java-debugger"; |
| 935 |
| 936 // Enables overscrolling for the OSK on Android. |
| 937 const char kEnableOSKOverscroll[] = "enable-osk-overscroll"; |
| 935 #endif | 938 #endif |
| 936 | 939 |
| 937 // Enable the aggressive flushing of DOM Storage to minimize data loss. | 940 // Enable the aggressive flushing of DOM Storage to minimize data loss. |
| 938 const char kEnableAggressiveDOMStorageFlushing[] = | 941 const char kEnableAggressiveDOMStorageFlushing[] = |
| 939 "enable-aggressive-domstorage-flushing"; | 942 "enable-aggressive-domstorage-flushing"; |
| 940 | 943 |
| 941 // Disable web audio API. | 944 // Disable web audio API. |
| 942 const char kDisableWebAudio[] = "disable-webaudio"; | 945 const char kDisableWebAudio[] = "disable-webaudio"; |
| 943 | 946 |
| 944 // Enable audio for desktop share. | 947 // Enable audio for desktop share. |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1023 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; | 1026 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; |
| 1024 | 1027 |
| 1025 // Enables the exporting of the tracing events to ETW. This is only supported on | 1028 // Enables the exporting of the tracing events to ETW. This is only supported on |
| 1026 // Windows Vista and later. | 1029 // Windows Vista and later. |
| 1027 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 1030 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; |
| 1028 #endif | 1031 #endif |
| 1029 | 1032 |
| 1030 // Don't dump stuff here, follow the same order as the header. | 1033 // Don't dump stuff here, follow the same order as the header. |
| 1031 | 1034 |
| 1032 } // namespace switches | 1035 } // namespace switches |
| OLD | NEW |