| 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 917 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 928 // viewport boundaries. | 928 // viewport boundaries. |
| 929 const char kEnableAdaptiveSelectionHandleOrientation[] = | 929 const char kEnableAdaptiveSelectionHandleOrientation[] = |
| 930 "enable-adaptive-selection-handle-orientation"; | 930 "enable-adaptive-selection-handle-orientation"; |
| 931 | 931 |
| 932 // Enable drag manipulation of longpress-triggered text selections. | 932 // Enable drag manipulation of longpress-triggered text selections. |
| 933 const char kEnableLongpressDragSelection[] = "enable-longpress-drag-selection"; | 933 const char kEnableLongpressDragSelection[] = "enable-longpress-drag-selection"; |
| 934 | 934 |
| 935 // The telephony region (ISO country code) to use in phone number detection. | 935 // The telephony region (ISO country code) to use in phone number detection. |
| 936 const char kNetworkCountryIso[] = "network-country-iso"; | 936 const char kNetworkCountryIso[] = "network-country-iso"; |
| 937 | 937 |
| 938 // When blink should declare a load "done" for the purpose of the |
| 939 // progress bar. |
| 940 const char kProgressBarCompletion[] = "progress-bar-completion"; |
| 941 |
| 938 // Enables remote debug over HTTP on the specified socket name. | 942 // Enables remote debug over HTTP on the specified socket name. |
| 939 const char kRemoteDebuggingSocketName[] = "remote-debugging-socket-name"; | 943 const char kRemoteDebuggingSocketName[] = "remote-debugging-socket-name"; |
| 940 | 944 |
| 941 // Block ChildProcessMain thread of the renderer's ChildProcessService until a | 945 // Block ChildProcessMain thread of the renderer's ChildProcessService until a |
| 942 // Java debugger is attached. | 946 // Java debugger is attached. |
| 943 const char kRendererWaitForJavaDebugger[] = "renderer-wait-for-java-debugger"; | 947 const char kRendererWaitForJavaDebugger[] = "renderer-wait-for-java-debugger"; |
| 944 | 948 |
| 945 // Use synchronous input code path for IPC-synchronous compositing. This is the | 949 // Use synchronous input code path for IPC-synchronous compositing. This is the |
| 946 // legacy input code path used by the in-process synchronous compositor. | 950 // legacy input code path used by the in-process synchronous compositor. |
| 947 // Maintaining this code path in case there are compatibility bugs with the | 951 // Maintaining this code path in case there are compatibility bugs with the |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1031 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; | 1035 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; |
| 1032 | 1036 |
| 1033 // Enables the exporting of the tracing events to ETW. This is only supported on | 1037 // Enables the exporting of the tracing events to ETW. This is only supported on |
| 1034 // Windows Vista and later. | 1038 // Windows Vista and later. |
| 1035 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 1039 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; |
| 1036 #endif | 1040 #endif |
| 1037 | 1041 |
| 1038 // Don't dump stuff here, follow the same order as the header. | 1042 // Don't dump stuff here, follow the same order as the header. |
| 1039 | 1043 |
| 1040 } // namespace switches | 1044 } // namespace switches |
| OLD | NEW |