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