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 939 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
950 | 950 |
951 // The telephony region (ISO country code) to use in phone number detection. | 951 // The telephony region (ISO country code) to use in phone number detection. |
952 const char kNetworkCountryIso[] = "network-country-iso"; | 952 const char kNetworkCountryIso[] = "network-country-iso"; |
953 | 953 |
954 // Enables remote debug over HTTP on the specified socket name. | 954 // Enables remote debug over HTTP on the specified socket name. |
955 const char kRemoteDebuggingSocketName[] = "remote-debugging-socket-name"; | 955 const char kRemoteDebuggingSocketName[] = "remote-debugging-socket-name"; |
956 | 956 |
957 // Block ChildProcessMain thread of the renderer's ChildProcessService until a | 957 // Block ChildProcessMain thread of the renderer's ChildProcessService until a |
958 // Java debugger is attached. | 958 // Java debugger is attached. |
959 const char kRendererWaitForJavaDebugger[] = "renderer-wait-for-java-debugger"; | 959 const char kRendererWaitForJavaDebugger[] = "renderer-wait-for-java-debugger"; |
| 960 |
| 961 // Use IME's own thread instead of using main UI thread. It also means that |
| 962 // we will not use replica editor and do a round trip to renderer to synchronize |
| 963 // with Blink data. |
| 964 const char kEnableImeThread[] = "enable-ime-thread"; |
| 965 const char kDisableImeThread[] = "disable-ime-thread"; |
960 #endif | 966 #endif |
961 | 967 |
962 // Enable the aggressive flushing of DOM Storage to minimize data loss. | 968 // Enable the aggressive flushing of DOM Storage to minimize data loss. |
963 const char kEnableAggressiveDOMStorageFlushing[] = | 969 const char kEnableAggressiveDOMStorageFlushing[] = |
964 "enable-aggressive-domstorage-flushing"; | 970 "enable-aggressive-domstorage-flushing"; |
965 | 971 |
966 // Disable web audio API. | 972 // Disable web audio API. |
967 const char kDisableWebAudio[] = "disable-webaudio"; | 973 const char kDisableWebAudio[] = "disable-webaudio"; |
968 | 974 |
969 // Enable audio for desktop share. | 975 // Enable audio for desktop share. |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1048 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; | 1054 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; |
1049 | 1055 |
1050 // Enables the exporting of the tracing events to ETW. This is only supported on | 1056 // Enables the exporting of the tracing events to ETW. This is only supported on |
1051 // Windows Vista and later. | 1057 // Windows Vista and later. |
1052 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 1058 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; |
1053 #endif | 1059 #endif |
1054 | 1060 |
1055 // Don't dump stuff here, follow the same order as the header. | 1061 // Don't dump stuff here, follow the same order as the header. |
1056 | 1062 |
1057 } // namespace switches | 1063 } // namespace switches |
OLD | NEW |