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