| 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 // Defines all the "base" command-line switches. | 5 // Defines all the "base" command-line switches. |
| 6 | 6 |
| 7 #ifndef BASE_BASE_SWITCHES_H_ | 7 #ifndef BASE_BASE_SWITCHES_H_ |
| 8 #define BASE_BASE_SWITCHES_H_ | 8 #define BASE_BASE_SWITCHES_H_ |
| 9 | 9 |
| 10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 extern const char kWaitForDebugger[]; | 32 extern const char kWaitForDebugger[]; |
| 33 | 33 |
| 34 #if defined(OS_WIN) | 34 #if defined(OS_WIN) |
| 35 extern const char kDisableUsbKeyboardDetect[]; | 35 extern const char kDisableUsbKeyboardDetect[]; |
| 36 #endif | 36 #endif |
| 37 | 37 |
| 38 #if defined(OS_POSIX) | 38 #if defined(OS_POSIX) |
| 39 extern const char kEnableCrashReporterForTesting[]; | 39 extern const char kEnableCrashReporterForTesting[]; |
| 40 #endif | 40 #endif |
| 41 | 41 |
| 42 #if defined(OS_CHROMEOS) |
| 43 extern const char kDisableSystemCompositorMode[]; |
| 44 extern const char kEnableSystemCompositorMode[]; |
| 45 #endif |
| 46 |
| 42 } // namespace switches | 47 } // namespace switches |
| 43 | 48 |
| 44 #endif // BASE_BASE_SWITCHES_H_ | 49 #endif // BASE_BASE_SWITCHES_H_ |
| OLD | NEW |