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 939 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
950 | 950 |
951 // Block ChildProcessMain thread of the renderer's ChildProcessService until a | 951 // Block ChildProcessMain thread of the renderer's ChildProcessService until a |
952 // Java debugger is attached. | 952 // Java debugger is attached. |
953 const char kRendererWaitForJavaDebugger[] = "renderer-wait-for-java-debugger"; | 953 const char kRendererWaitForJavaDebugger[] = "renderer-wait-for-java-debugger"; |
954 | 954 |
955 // Use IME's own thread instead of using main UI thread. It also means that | 955 // Use IME's own thread instead of using main UI thread. It also means that |
956 // we will not use replica editor and do a round trip to renderer to synchronize | 956 // we will not use replica editor and do a round trip to renderer to synchronize |
957 // with Blink data. | 957 // with Blink data. |
958 const char kEnableImeThread[] = "enable-ime-thread"; | 958 const char kEnableImeThread[] = "enable-ime-thread"; |
959 const char kDisableImeThread[] = "disable-ime-thread"; | 959 const char kDisableImeThread[] = "disable-ime-thread"; |
| 960 |
| 961 // Enables overscrolling for the OSK on Android. |
| 962 const char kEnableOSKOverscroll[] = "enable-osk-overscroll"; |
960 #endif | 963 #endif |
961 | 964 |
962 // Enable the aggressive flushing of DOM Storage to minimize data loss. | 965 // Enable the aggressive flushing of DOM Storage to minimize data loss. |
963 const char kEnableAggressiveDOMStorageFlushing[] = | 966 const char kEnableAggressiveDOMStorageFlushing[] = |
964 "enable-aggressive-domstorage-flushing"; | 967 "enable-aggressive-domstorage-flushing"; |
965 | 968 |
966 // Enable audio for desktop share. | 969 // Enable audio for desktop share. |
967 const char kEnableAudioSupportForDesktopShare[] = | 970 const char kEnableAudioSupportForDesktopShare[] = |
968 "enable-audio-support-for-desktop-share"; | 971 "enable-audio-support-for-desktop-share"; |
969 | 972 |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1045 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; | 1048 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; |
1046 | 1049 |
1047 // Enables the exporting of the tracing events to ETW. This is only supported on | 1050 // Enables the exporting of the tracing events to ETW. This is only supported on |
1048 // Windows Vista and later. | 1051 // Windows Vista and later. |
1049 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 1052 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; |
1050 #endif | 1053 #endif |
1051 | 1054 |
1052 // Don't dump stuff here, follow the same order as the header. | 1055 // Don't dump stuff here, follow the same order as the header. |
1053 | 1056 |
1054 } // namespace switches | 1057 } // namespace switches |
OLD | NEW |