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