| 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 922 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 933 | 933 |
| 934 // The telephony region (ISO country code) to use in phone number detection. | 934 // The telephony region (ISO country code) to use in phone number detection. |
| 935 const char kNetworkCountryIso[] = "network-country-iso"; | 935 const char kNetworkCountryIso[] = "network-country-iso"; |
| 936 | 936 |
| 937 // Enables remote debug over HTTP on the specified socket name. | 937 // Enables remote debug over HTTP on the specified socket name. |
| 938 const char kRemoteDebuggingSocketName[] = "remote-debugging-socket-name"; | 938 const char kRemoteDebuggingSocketName[] = "remote-debugging-socket-name"; |
| 939 | 939 |
| 940 // Block ChildProcessMain thread of the renderer's ChildProcessService until a | 940 // Block ChildProcessMain thread of the renderer's ChildProcessService until a |
| 941 // Java debugger is attached. | 941 // Java debugger is attached. |
| 942 const char kRendererWaitForJavaDebugger[] = "renderer-wait-for-java-debugger"; | 942 const char kRendererWaitForJavaDebugger[] = "renderer-wait-for-java-debugger"; |
| 943 |
| 944 // Use IME's own thread instead of using main UI thread. It also means that |
| 945 // we will not use replica editor and do a round trip to renderer to synchronize |
| 946 // with Blink data. |
| 947 const char kUseImeThread[] = "use-ime-thread"; |
| 943 #endif | 948 #endif |
| 944 | 949 |
| 945 // Enable the aggressive flushing of DOM Storage to minimize data loss. | 950 // Enable the aggressive flushing of DOM Storage to minimize data loss. |
| 946 const char kEnableAggressiveDOMStorageFlushing[] = | 951 const char kEnableAggressiveDOMStorageFlushing[] = |
| 947 "enable-aggressive-domstorage-flushing"; | 952 "enable-aggressive-domstorage-flushing"; |
| 948 | 953 |
| 949 // Disable web audio API. | 954 // Disable web audio API. |
| 950 const char kDisableWebAudio[] = "disable-webaudio"; | 955 const char kDisableWebAudio[] = "disable-webaudio"; |
| 951 | 956 |
| 952 // Enable audio for desktop share. | 957 // Enable audio for desktop share. |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1031 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; | 1036 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; |
| 1032 | 1037 |
| 1033 // Enables the exporting of the tracing events to ETW. This is only supported on | 1038 // Enables the exporting of the tracing events to ETW. This is only supported on |
| 1034 // Windows Vista and later. | 1039 // Windows Vista and later. |
| 1035 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 1040 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; |
| 1036 #endif | 1041 #endif |
| 1037 | 1042 |
| 1038 // Don't dump stuff here, follow the same order as the header. | 1043 // Don't dump stuff here, follow the same order as the header. |
| 1039 | 1044 |
| 1040 } // namespace switches | 1045 } // namespace switches |
| OLD | NEW |