| 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 #include "media/media_features.h" | 7 #include "media/media_features.h" |
| 8 | 8 |
| 9 namespace switches { | 9 namespace switches { |
| 10 | 10 |
| (...skipping 977 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 988 | 988 |
| 989 // Enables remote debug over HTTP on the specified socket name. | 989 // Enables remote debug over HTTP on the specified socket name. |
| 990 const char kRemoteDebuggingSocketName[] = "remote-debugging-socket-name"; | 990 const char kRemoteDebuggingSocketName[] = "remote-debugging-socket-name"; |
| 991 | 991 |
| 992 // Block ChildProcessMain thread of the renderer's ChildProcessService until a | 992 // Block ChildProcessMain thread of the renderer's ChildProcessService until a |
| 993 // Java debugger is attached. | 993 // Java debugger is attached. |
| 994 const char kRendererWaitForJavaDebugger[] = "renderer-wait-for-java-debugger"; | 994 const char kRendererWaitForJavaDebugger[] = "renderer-wait-for-java-debugger"; |
| 995 | 995 |
| 996 // Enables overscrolling for the OSK on Android. | 996 // Enables overscrolling for the OSK on Android. |
| 997 const char kEnableOSKOverscroll[] = "enable-osk-overscroll"; | 997 const char kEnableOSKOverscroll[] = "enable-osk-overscroll"; |
| 998 |
| 999 // Enable new ViewRoot-based event forwarding. |
| 1000 const char kEnableViewRoot[] = "enable-view-root"; |
| 998 #endif | 1001 #endif |
| 999 | 1002 |
| 1000 // Enable the aggressive flushing of DOM Storage to minimize data loss. | 1003 // Enable the aggressive flushing of DOM Storage to minimize data loss. |
| 1001 const char kEnableAggressiveDOMStorageFlushing[] = | 1004 const char kEnableAggressiveDOMStorageFlushing[] = |
| 1002 "enable-aggressive-domstorage-flushing"; | 1005 "enable-aggressive-domstorage-flushing"; |
| 1003 | 1006 |
| 1004 // Enable audio for desktop share. | 1007 // Enable audio for desktop share. |
| 1005 const char kDisableAudioSupportForDesktopShare[] = | 1008 const char kDisableAudioSupportForDesktopShare[] = |
| 1006 "disable-audio-support-for-desktop-share"; | 1009 "disable-audio-support-for-desktop-share"; |
| 1007 | 1010 |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1092 // the given directory. Used primarily to gather samples for IPC fuzzing. | 1095 // the given directory. Used primarily to gather samples for IPC fuzzing. |
| 1093 const char kIpcDumpDirectory[] = "ipc-dump-directory"; | 1096 const char kIpcDumpDirectory[] = "ipc-dump-directory"; |
| 1094 | 1097 |
| 1095 // Specifies the testcase used by the IPC fuzzer. | 1098 // Specifies the testcase used by the IPC fuzzer. |
| 1096 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; | 1099 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; |
| 1097 #endif | 1100 #endif |
| 1098 | 1101 |
| 1099 // Don't dump stuff here, follow the same order as the header. | 1102 // Don't dump stuff here, follow the same order as the header. |
| 1100 | 1103 |
| 1101 } // namespace switches | 1104 } // namespace switches |
| OLD | NEW |