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 932 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
943 | 943 |
944 // The telephony region (ISO country code) to use in phone number detection. | 944 // The telephony region (ISO country code) to use in phone number detection. |
945 const char kNetworkCountryIso[] = "network-country-iso"; | 945 const char kNetworkCountryIso[] = "network-country-iso"; |
946 | 946 |
947 // Enables remote debug over HTTP on the specified socket name. | 947 // Enables remote debug over HTTP on the specified socket name. |
948 const char kRemoteDebuggingSocketName[] = "remote-debugging-socket-name"; | 948 const char kRemoteDebuggingSocketName[] = "remote-debugging-socket-name"; |
949 | 949 |
950 // Block ChildProcessMain thread of the renderer's ChildProcessService until a | 950 // Block ChildProcessMain thread of the renderer's ChildProcessService until a |
951 // Java debugger is attached. | 951 // Java debugger is attached. |
952 const char kRendererWaitForJavaDebugger[] = "renderer-wait-for-java-debugger"; | 952 const char kRendererWaitForJavaDebugger[] = "renderer-wait-for-java-debugger"; |
| 953 |
| 954 // Use synchronous input code path for IPC-synchronous compositing. This is the |
| 955 // legacy input code path used by the in-process synchronous compositor. |
| 956 // Maintaining this code path in case there are compatibility bugs with the |
| 957 // standard async input path. Remove tracked as part of crbug.com/545628. |
| 958 const char kSyncInputForSyncCompositor[] = "sync-input-for-sync-compositor"; |
953 #endif | 959 #endif |
954 | 960 |
955 // Enable the aggressive flushing of DOM Storage to minimize data loss. | 961 // Enable the aggressive flushing of DOM Storage to minimize data loss. |
956 const char kEnableAggressiveDOMStorageFlushing[] = | 962 const char kEnableAggressiveDOMStorageFlushing[] = |
957 "enable-aggressive-domstorage-flushing"; | 963 "enable-aggressive-domstorage-flushing"; |
958 | 964 |
959 // Enable audio for desktop share. | 965 // Enable audio for desktop share. |
960 const char kEnableAudioSupportForDesktopShare[] = | 966 const char kEnableAudioSupportForDesktopShare[] = |
961 "enable-audio-support-for-desktop-share"; | 967 "enable-audio-support-for-desktop-share"; |
962 | 968 |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1038 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; | 1044 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; |
1039 | 1045 |
1040 // Enables the exporting of the tracing events to ETW. This is only supported on | 1046 // Enables the exporting of the tracing events to ETW. This is only supported on |
1041 // Windows Vista and later. | 1047 // Windows Vista and later. |
1042 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 1048 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; |
1043 #endif | 1049 #endif |
1044 | 1050 |
1045 // Don't dump stuff here, follow the same order as the header. | 1051 // Don't dump stuff here, follow the same order as the header. |
1046 | 1052 |
1047 } // namespace switches | 1053 } // namespace switches |
OLD | NEW |