| 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 907 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 918 // viewport boundaries. | 918 // viewport boundaries. |
| 919 const char kEnableAdaptiveSelectionHandleOrientation[] = | 919 const char kEnableAdaptiveSelectionHandleOrientation[] = |
| 920 "enable-adaptive-selection-handle-orientation"; | 920 "enable-adaptive-selection-handle-orientation"; |
| 921 | 921 |
| 922 // Enable drag manipulation of longpress-triggered text selections. | 922 // Enable drag manipulation of longpress-triggered text selections. |
| 923 const char kEnableLongpressDragSelection[] = "enable-longpress-drag-selection"; | 923 const char kEnableLongpressDragSelection[] = "enable-longpress-drag-selection"; |
| 924 | 924 |
| 925 // The telephony region (ISO country code) to use in phone number detection. | 925 // The telephony region (ISO country code) to use in phone number detection. |
| 926 const char kNetworkCountryIso[] = "network-country-iso"; | 926 const char kNetworkCountryIso[] = "network-country-iso"; |
| 927 | 927 |
| 928 // When blink should declare a load "done" for the purpose of the |
| 929 // progress bar. |
| 930 const char kProgressBarCompletion[] = "progress-bar-completion"; |
| 931 |
| 928 // Enables remote debug over HTTP on the specified socket name. | 932 // Enables remote debug over HTTP on the specified socket name. |
| 929 const char kRemoteDebuggingSocketName[] = "remote-debugging-socket-name"; | 933 const char kRemoteDebuggingSocketName[] = "remote-debugging-socket-name"; |
| 930 | 934 |
| 931 // Block ChildProcessMain thread of the renderer's ChildProcessService until a | 935 // Block ChildProcessMain thread of the renderer's ChildProcessService until a |
| 932 // Java debugger is attached. | 936 // Java debugger is attached. |
| 933 const char kRendererWaitForJavaDebugger[] = "renderer-wait-for-java-debugger"; | 937 const char kRendererWaitForJavaDebugger[] = "renderer-wait-for-java-debugger"; |
| 934 | 938 |
| 935 // Use synchronous input code path for IPC-synchronous compositing. This is the | 939 // Use synchronous input code path for IPC-synchronous compositing. This is the |
| 936 // legacy input code path used by the in-process synchronous compositor. | 940 // legacy input code path used by the in-process synchronous compositor. |
| 937 // Maintaining this code path in case there are compatibility bugs with the | 941 // 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... |
| 1021 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; | 1025 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; |
| 1022 | 1026 |
| 1023 // Enables the exporting of the tracing events to ETW. This is only supported on | 1027 // Enables the exporting of the tracing events to ETW. This is only supported on |
| 1024 // Windows Vista and later. | 1028 // Windows Vista and later. |
| 1025 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 1029 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; |
| 1026 #endif | 1030 #endif |
| 1027 | 1031 |
| 1028 // Don't dump stuff here, follow the same order as the header. | 1032 // Don't dump stuff here, follow the same order as the header. |
| 1029 | 1033 |
| 1030 } // namespace switches | 1034 } // namespace switches |
| OLD | NEW |