| 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 "base/base_switches.h" | 5 #include "base/base_switches.h" |
| 6 #include "build/build_config.h" | 6 #include "build/build_config.h" |
| 7 | 7 |
| 8 namespace switches { | 8 namespace switches { |
| 9 | 9 |
| 10 // Disables the crash reporting. | 10 // Disables the crash reporting. |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 const char kDisableUsbKeyboardDetect[] = "disable-usb-keyboard-detect"; | 104 const char kDisableUsbKeyboardDetect[] = "disable-usb-keyboard-detect"; |
| 105 #endif | 105 #endif |
| 106 | 106 |
| 107 #if defined(OS_POSIX) | 107 #if defined(OS_POSIX) |
| 108 // Used for turning on Breakpad crash reporting in a debug environment where | 108 // Used for turning on Breakpad crash reporting in a debug environment where |
| 109 // crash reporting is typically compiled but disabled. | 109 // crash reporting is typically compiled but disabled. |
| 110 const char kEnableCrashReporterForTesting[] = | 110 const char kEnableCrashReporterForTesting[] = |
| 111 "enable-crash-reporter-for-testing"; | 111 "enable-crash-reporter-for-testing"; |
| 112 #endif | 112 #endif |
| 113 | 113 |
| 114 #if defined(OS_CHROMEOS) |
| 115 // Force system compositor mode when set. |
| 116 const char kEnableSystemCompositorMode[] = "enable-system-compositor-mode"; |
| 117 |
| 118 // Force disabling of system compositor mode when set. |
| 119 const char kDisableSystemCompositorMode[] = "disable-system-compositor-mode"; |
| 120 #endif |
| 121 |
| 114 } // namespace switches | 122 } // namespace switches |
| OLD | NEW |