| 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 987 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 998 const char kRendererWaitForJavaDebugger[] = "renderer-wait-for-java-debugger"; | 998 const char kRendererWaitForJavaDebugger[] = "renderer-wait-for-java-debugger"; |
| 999 | 999 |
| 1000 // Enables overscrolling for the OSK on Android. | 1000 // Enables overscrolling for the OSK on Android. |
| 1001 const char kEnableOSKOverscroll[] = "enable-osk-overscroll"; | 1001 const char kEnableOSKOverscroll[] = "enable-osk-overscroll"; |
| 1002 #endif | 1002 #endif |
| 1003 | 1003 |
| 1004 // Enable the aggressive flushing of DOM Storage to minimize data loss. | 1004 // Enable the aggressive flushing of DOM Storage to minimize data loss. |
| 1005 const char kEnableAggressiveDOMStorageFlushing[] = | 1005 const char kEnableAggressiveDOMStorageFlushing[] = |
| 1006 "enable-aggressive-domstorage-flushing"; | 1006 "enable-aggressive-domstorage-flushing"; |
| 1007 | 1007 |
| 1008 // Enable automation hooks for ChromeDriver. |
| 1009 const char kEnableChromeDriver[] = "enable-chromedriver"; |
| 1010 |
| 1008 // Enable audio for desktop share. | 1011 // Enable audio for desktop share. |
| 1009 const char kDisableAudioSupportForDesktopShare[] = | 1012 const char kDisableAudioSupportForDesktopShare[] = |
| 1010 "disable-audio-support-for-desktop-share"; | 1013 "disable-audio-support-for-desktop-share"; |
| 1011 | 1014 |
| 1012 #if defined(OS_CHROMEOS) | 1015 #if defined(OS_CHROMEOS) |
| 1013 // Disables panel fitting (used for mirror mode). | 1016 // Disables panel fitting (used for mirror mode). |
| 1014 const char kDisablePanelFitting[] = "disable-panel-fitting"; | 1017 const char kDisablePanelFitting[] = "disable-panel-fitting"; |
| 1015 | 1018 |
| 1016 // Disables VA-API accelerated video encode. | 1019 // Disables VA-API accelerated video encode. |
| 1017 const char kDisableVaapiAcceleratedVideoEncode[] = | 1020 const char kDisableVaapiAcceleratedVideoEncode[] = |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1096 // the given directory. Used primarily to gather samples for IPC fuzzing. | 1099 // the given directory. Used primarily to gather samples for IPC fuzzing. |
| 1097 const char kIpcDumpDirectory[] = "ipc-dump-directory"; | 1100 const char kIpcDumpDirectory[] = "ipc-dump-directory"; |
| 1098 | 1101 |
| 1099 // Specifies the testcase used by the IPC fuzzer. | 1102 // Specifies the testcase used by the IPC fuzzer. |
| 1100 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; | 1103 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; |
| 1101 #endif | 1104 #endif |
| 1102 | 1105 |
| 1103 // Don't dump stuff here, follow the same order as the header. | 1106 // Don't dump stuff here, follow the same order as the header. |
| 1104 | 1107 |
| 1105 } // namespace switches | 1108 } // namespace switches |
| OLD | NEW |