| 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 // viewport boundaries. | 943 // viewport boundaries. |
| 944 const char kEnableAdaptiveSelectionHandleOrientation[] = | 944 const char kEnableAdaptiveSelectionHandleOrientation[] = |
| 945 "enable-adaptive-selection-handle-orientation"; | 945 "enable-adaptive-selection-handle-orientation"; |
| 946 | 946 |
| 947 // Enable drag manipulation of longpress-triggered text selections. | 947 // Enable drag manipulation of longpress-triggered text selections. |
| 948 const char kEnableLongpressDragSelection[] = "enable-longpress-drag-selection"; | 948 const char kEnableLongpressDragSelection[] = "enable-longpress-drag-selection"; |
| 949 | 949 |
| 950 // The telephony region (ISO country code) to use in phone number detection. | 950 // The telephony region (ISO country code) to use in phone number detection. |
| 951 const char kNetworkCountryIso[] = "network-country-iso"; | 951 const char kNetworkCountryIso[] = "network-country-iso"; |
| 952 | 952 |
| 953 // When blink should declare a load "done" for the purpose of the |
| 954 // progress bar. |
| 955 const char kProgressBarCompletion[] = "progress-bar-completion"; |
| 956 |
| 953 // Enables remote debug over HTTP on the specified socket name. | 957 // Enables remote debug over HTTP on the specified socket name. |
| 954 const char kRemoteDebuggingSocketName[] = "remote-debugging-socket-name"; | 958 const char kRemoteDebuggingSocketName[] = "remote-debugging-socket-name"; |
| 955 | 959 |
| 956 // Block ChildProcessMain thread of the renderer's ChildProcessService until a | 960 // Block ChildProcessMain thread of the renderer's ChildProcessService until a |
| 957 // Java debugger is attached. | 961 // Java debugger is attached. |
| 958 const char kRendererWaitForJavaDebugger[] = "renderer-wait-for-java-debugger"; | 962 const char kRendererWaitForJavaDebugger[] = "renderer-wait-for-java-debugger"; |
| 959 | 963 |
| 960 // Use synchronous input code path for IPC-synchronous compositing. This is the | 964 // Use synchronous input code path for IPC-synchronous compositing. This is the |
| 961 // legacy input code path used by the in-process synchronous compositor. | 965 // legacy input code path used by the in-process synchronous compositor. |
| 962 // Maintaining this code path in case there are compatibility bugs with the | 966 // Maintaining this code path in case there are compatibility bugs with the |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1050 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; | 1054 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; |
| 1051 | 1055 |
| 1052 // 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 |
| 1053 // Windows Vista and later. | 1057 // Windows Vista and later. |
| 1054 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 1058 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; |
| 1055 #endif | 1059 #endif |
| 1056 | 1060 |
| 1057 // 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. |
| 1058 | 1062 |
| 1059 } // namespace switches | 1063 } // namespace switches |
| OLD | NEW |