| 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 951 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 962 | 962 |
| 963 // The telephony region (ISO country code) to use in phone number detection. | 963 // The telephony region (ISO country code) to use in phone number detection. |
| 964 const char kNetworkCountryIso[] = "network-country-iso"; | 964 const char kNetworkCountryIso[] = "network-country-iso"; |
| 965 | 965 |
| 966 // Enables remote debug over HTTP on the specified socket name. | 966 // Enables remote debug over HTTP on the specified socket name. |
| 967 const char kRemoteDebuggingSocketName[] = "remote-debugging-socket-name"; | 967 const char kRemoteDebuggingSocketName[] = "remote-debugging-socket-name"; |
| 968 | 968 |
| 969 // Block ChildProcessMain thread of the renderer's ChildProcessService until a | 969 // Block ChildProcessMain thread of the renderer's ChildProcessService until a |
| 970 // Java debugger is attached. | 970 // Java debugger is attached. |
| 971 const char kRendererWaitForJavaDebugger[] = "renderer-wait-for-java-debugger"; | 971 const char kRendererWaitForJavaDebugger[] = "renderer-wait-for-java-debugger"; |
| 972 |
| 973 // Use IME's own thread instead of using main UI thread. It also means that |
| 974 // we will not use replica editor and do a round trip to renderer to synchronize |
| 975 // with Blink data. |
| 976 const char kEnableImeThread[] = "enable-ime-thread"; |
| 977 const char kDisableImeThread[] = "disable-ime-thread"; |
| 972 #endif | 978 #endif |
| 973 | 979 |
| 974 // Enable the aggressive flushing of DOM Storage to minimize data loss. | 980 // Enable the aggressive flushing of DOM Storage to minimize data loss. |
| 975 const char kEnableAggressiveDOMStorageFlushing[] = | 981 const char kEnableAggressiveDOMStorageFlushing[] = |
| 976 "enable-aggressive-domstorage-flushing"; | 982 "enable-aggressive-domstorage-flushing"; |
| 977 | 983 |
| 978 // Disable web audio API. | 984 // Disable web audio API. |
| 979 const char kDisableWebAudio[] = "disable-webaudio"; | 985 const char kDisableWebAudio[] = "disable-webaudio"; |
| 980 | 986 |
| 981 // Enable audio for desktop share. | 987 // Enable audio for desktop share. |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1060 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; | 1066 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; |
| 1061 | 1067 |
| 1062 // Enables the exporting of the tracing events to ETW. This is only supported on | 1068 // Enables the exporting of the tracing events to ETW. This is only supported on |
| 1063 // Windows Vista and later. | 1069 // Windows Vista and later. |
| 1064 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 1070 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; |
| 1065 #endif | 1071 #endif |
| 1066 | 1072 |
| 1067 // Don't dump stuff here, follow the same order as the header. | 1073 // Don't dump stuff here, follow the same order as the header. |
| 1068 | 1074 |
| 1069 } // namespace switches | 1075 } // namespace switches |
| OLD | NEW |