| 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 | 943 |
| 944 // Block ChildProcessMain thread of the renderer's ChildProcessService until a | 944 // Block ChildProcessMain thread of the renderer's ChildProcessService until a |
| 945 // Java debugger is attached. | 945 // Java debugger is attached. |
| 946 const char kRendererWaitForJavaDebugger[] = "renderer-wait-for-java-debugger"; | 946 const char kRendererWaitForJavaDebugger[] = "renderer-wait-for-java-debugger"; |
| 947 | 947 |
| 948 // Use synchronous input code path for IPC-synchronous compositing. This is the | 948 // Use synchronous input code path for IPC-synchronous compositing. This is the |
| 949 // legacy input code path used by the in-process synchronous compositor. | 949 // legacy input code path used by the in-process synchronous compositor. |
| 950 // Maintaining this code path in case there are compatibility bugs with the | 950 // Maintaining this code path in case there are compatibility bugs with the |
| 951 // standard async input path. Remove tracked as part of crbug.com/545628. | 951 // standard async input path. Remove tracked as part of crbug.com/545628. |
| 952 const char kSyncInputForSyncCompositor[] = "sync-input-for-sync-compositor"; | 952 const char kSyncInputForSyncCompositor[] = "sync-input-for-sync-compositor"; |
| 953 |
| 954 // Enables overscrolling for the OSK on Android. |
| 955 const char kEnableOSKOverscroll[] = "enable-osk-overscroll"; |
| 953 #endif | 956 #endif |
| 954 | 957 |
| 955 // Enable the aggressive flushing of DOM Storage to minimize data loss. | 958 // Enable the aggressive flushing of DOM Storage to minimize data loss. |
| 956 const char kEnableAggressiveDOMStorageFlushing[] = | 959 const char kEnableAggressiveDOMStorageFlushing[] = |
| 957 "enable-aggressive-domstorage-flushing"; | 960 "enable-aggressive-domstorage-flushing"; |
| 958 | 961 |
| 959 // Enable audio for desktop share. | 962 // Enable audio for desktop share. |
| 960 const char kEnableAudioSupportForDesktopShare[] = | 963 const char kEnableAudioSupportForDesktopShare[] = |
| 961 "enable-audio-support-for-desktop-share"; | 964 "enable-audio-support-for-desktop-share"; |
| 962 | 965 |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1038 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; | 1041 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; |
| 1039 | 1042 |
| 1040 // Enables the exporting of the tracing events to ETW. This is only supported on | 1043 // Enables the exporting of the tracing events to ETW. This is only supported on |
| 1041 // Windows Vista and later. | 1044 // Windows Vista and later. |
| 1042 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 1045 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; |
| 1043 #endif | 1046 #endif |
| 1044 | 1047 |
| 1045 // Don't dump stuff here, follow the same order as the header. | 1048 // Don't dump stuff here, follow the same order as the header. |
| 1046 | 1049 |
| 1047 } // namespace switches | 1050 } // namespace switches |
| OLD | NEW |