| 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 893 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 904 | 904 |
| 905 // The telephony region (ISO country code) to use in phone number detection. | 905 // The telephony region (ISO country code) to use in phone number detection. |
| 906 const char kNetworkCountryIso[] = "network-country-iso"; | 906 const char kNetworkCountryIso[] = "network-country-iso"; |
| 907 | 907 |
| 908 // Enables remote debug over HTTP on the specified socket name. | 908 // Enables remote debug over HTTP on the specified socket name. |
| 909 const char kRemoteDebuggingSocketName[] = "remote-debugging-socket-name"; | 909 const char kRemoteDebuggingSocketName[] = "remote-debugging-socket-name"; |
| 910 | 910 |
| 911 // Block ChildProcessMain thread of the renderer's ChildProcessService until a | 911 // Block ChildProcessMain thread of the renderer's ChildProcessService until a |
| 912 // Java debugger is attached. | 912 // Java debugger is attached. |
| 913 const char kRendererWaitForJavaDebugger[] = "renderer-wait-for-java-debugger"; | 913 const char kRendererWaitForJavaDebugger[] = "renderer-wait-for-java-debugger"; |
| 914 |
| 915 // Use IME's own thread instead of using main UI thread. It also means that |
| 916 // we will not use replica editor and do a round trip to renderer to synchronize |
| 917 // with Blink data. |
| 918 const char kUseImeThread[] = "use-ime-thread"; |
| 914 #endif | 919 #endif |
| 915 | 920 |
| 916 // Enable the aggressive flushing of DOM Storage to minimize data loss. | 921 // Enable the aggressive flushing of DOM Storage to minimize data loss. |
| 917 const char kEnableAggressiveDOMStorageFlushing[] = | 922 const char kEnableAggressiveDOMStorageFlushing[] = |
| 918 "enable-aggressive-domstorage-flushing"; | 923 "enable-aggressive-domstorage-flushing"; |
| 919 | 924 |
| 920 // Disable web audio API. | 925 // Disable web audio API. |
| 921 const char kDisableWebAudio[] = "disable-webaudio"; | 926 const char kDisableWebAudio[] = "disable-webaudio"; |
| 922 | 927 |
| 923 #if defined(OS_CHROMEOS) | 928 #if defined(OS_CHROMEOS) |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 968 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; | 973 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; |
| 969 | 974 |
| 970 // Enables the exporting of the tracing events to ETW. This is only supported on | 975 // Enables the exporting of the tracing events to ETW. This is only supported on |
| 971 // Windows Vista and later. | 976 // Windows Vista and later. |
| 972 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 977 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; |
| 973 #endif | 978 #endif |
| 974 | 979 |
| 975 // Don't dump stuff here, follow the same order as the header. | 980 // Don't dump stuff here, follow the same order as the header. |
| 976 | 981 |
| 977 } // namespace switches | 982 } // namespace switches |
| OLD | NEW |