| 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 901 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 912 const char kDisableScreenOrientationLock[] = "disable-screen-orientation-lock"; | 912 const char kDisableScreenOrientationLock[] = "disable-screen-orientation-lock"; |
| 913 | 913 |
| 914 // Enable inverting of selection handles so that they are not clipped by the | 914 // Enable inverting of selection handles so that they are not clipped by the |
| 915 // viewport boundaries. | 915 // viewport boundaries. |
| 916 const char kEnableAdaptiveSelectionHandleOrientation[] = | 916 const char kEnableAdaptiveSelectionHandleOrientation[] = |
| 917 "enable-adaptive-selection-handle-orientation"; | 917 "enable-adaptive-selection-handle-orientation"; |
| 918 | 918 |
| 919 // Enable drag manipulation of longpress-triggered text selections. | 919 // Enable drag manipulation of longpress-triggered text selections. |
| 920 const char kEnableLongpressDragSelection[] = "enable-longpress-drag-selection"; | 920 const char kEnableLongpressDragSelection[] = "enable-longpress-drag-selection"; |
| 921 | 921 |
| 922 // Enable IPC-based synchronous compositing. Used by Android WebView. | |
| 923 const char kIPCSyncCompositing[] = "ipc-sync-compositing"; | |
| 924 | |
| 925 // The telephony region (ISO country code) to use in phone number detection. | 922 // The telephony region (ISO country code) to use in phone number detection. |
| 926 const char kNetworkCountryIso[] = "network-country-iso"; | 923 const char kNetworkCountryIso[] = "network-country-iso"; |
| 927 | 924 |
| 928 // Enables remote debug over HTTP on the specified socket name. | 925 // Enables remote debug over HTTP on the specified socket name. |
| 929 const char kRemoteDebuggingSocketName[] = "remote-debugging-socket-name"; | 926 const char kRemoteDebuggingSocketName[] = "remote-debugging-socket-name"; |
| 930 | 927 |
| 931 // Block ChildProcessMain thread of the renderer's ChildProcessService until a | 928 // Block ChildProcessMain thread of the renderer's ChildProcessService until a |
| 932 // Java debugger is attached. | 929 // Java debugger is attached. |
| 933 const char kRendererWaitForJavaDebugger[] = "renderer-wait-for-java-debugger"; | 930 const char kRendererWaitForJavaDebugger[] = "renderer-wait-for-java-debugger"; |
| 934 | 931 |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1021 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; | 1018 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; |
| 1022 | 1019 |
| 1023 // Enables the exporting of the tracing events to ETW. This is only supported on | 1020 // Enables the exporting of the tracing events to ETW. This is only supported on |
| 1024 // Windows Vista and later. | 1021 // Windows Vista and later. |
| 1025 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 1022 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; |
| 1026 #endif | 1023 #endif |
| 1027 | 1024 |
| 1028 // Don't dump stuff here, follow the same order as the header. | 1025 // Don't dump stuff here, follow the same order as the header. |
| 1029 | 1026 |
| 1030 } // namespace switches | 1027 } // namespace switches |
| OLD | NEW |