| 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 973 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 984 const char kRendererWaitForJavaDebugger[] = "renderer-wait-for-java-debugger"; | 984 const char kRendererWaitForJavaDebugger[] = "renderer-wait-for-java-debugger"; |
| 985 | 985 |
| 986 // Enables overscrolling for the OSK on Android. | 986 // Enables overscrolling for the OSK on Android. |
| 987 const char kEnableOSKOverscroll[] = "enable-osk-overscroll"; | 987 const char kEnableOSKOverscroll[] = "enable-osk-overscroll"; |
| 988 #endif | 988 #endif |
| 989 | 989 |
| 990 // Enable the aggressive flushing of DOM Storage to minimize data loss. | 990 // Enable the aggressive flushing of DOM Storage to minimize data loss. |
| 991 const char kEnableAggressiveDOMStorageFlushing[] = | 991 const char kEnableAggressiveDOMStorageFlushing[] = |
| 992 "enable-aggressive-domstorage-flushing"; | 992 "enable-aggressive-domstorage-flushing"; |
| 993 | 993 |
| 994 // Enable indication that browser is controlled by automation. |
| 995 const char kEnableAutomation[] = "enable-automation"; |
| 996 |
| 994 // Enable audio for desktop share. | 997 // Enable audio for desktop share. |
| 995 const char kDisableAudioSupportForDesktopShare[] = | 998 const char kDisableAudioSupportForDesktopShare[] = |
| 996 "disable-audio-support-for-desktop-share"; | 999 "disable-audio-support-for-desktop-share"; |
| 997 | 1000 |
| 998 #if defined(OS_CHROMEOS) | 1001 #if defined(OS_CHROMEOS) |
| 999 // Disables panel fitting (used for mirror mode). | 1002 // Disables panel fitting (used for mirror mode). |
| 1000 const char kDisablePanelFitting[] = "disable-panel-fitting"; | 1003 const char kDisablePanelFitting[] = "disable-panel-fitting"; |
| 1001 | 1004 |
| 1002 // Disables VA-API accelerated video encode. | 1005 // Disables VA-API accelerated video encode. |
| 1003 const char kDisableVaapiAcceleratedVideoEncode[] = | 1006 const char kDisableVaapiAcceleratedVideoEncode[] = |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1082 // the given directory. Used primarily to gather samples for IPC fuzzing. | 1085 // the given directory. Used primarily to gather samples for IPC fuzzing. |
| 1083 const char kIpcDumpDirectory[] = "ipc-dump-directory"; | 1086 const char kIpcDumpDirectory[] = "ipc-dump-directory"; |
| 1084 | 1087 |
| 1085 // Specifies the testcase used by the IPC fuzzer. | 1088 // Specifies the testcase used by the IPC fuzzer. |
| 1086 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; | 1089 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; |
| 1087 #endif | 1090 #endif |
| 1088 | 1091 |
| 1089 // Don't dump stuff here, follow the same order as the header. | 1092 // Don't dump stuff here, follow the same order as the header. |
| 1090 | 1093 |
| 1091 } // namespace switches | 1094 } // namespace switches |
| OLD | NEW |