| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 command-line switches used by Chrome. | 5 // Defines all the command-line switches used by Chrome. |
| 6 | 6 |
| 7 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_ | 7 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_ |
| 8 #define CHROME_COMMON_CHROME_SWITCHES_H_ | 8 #define CHROME_COMMON_CHROME_SWITCHES_H_ |
| 9 #pragma once | 9 #pragma once |
| 10 | 10 |
| (...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 359 #endif | 359 #endif |
| 360 | 360 |
| 361 #if defined(TOUCH_UI) | 361 #if defined(TOUCH_UI) |
| 362 extern const char kKeepMouseCursor[]; | 362 extern const char kKeepMouseCursor[]; |
| 363 #endif | 363 #endif |
| 364 | 364 |
| 365 #ifndef NDEBUG | 365 #ifndef NDEBUG |
| 366 extern const char kClearTokenService[]; | 366 extern const char kClearTokenService[]; |
| 367 extern const char kSetToken[]; | 367 extern const char kSetToken[]; |
| 368 extern const char kWebSocketLiveExperimentHost[]; | 368 extern const char kWebSocketLiveExperimentHost[]; |
| 369 extern const char kExposePrivateExtensionApi[]; |
| 369 #endif | 370 #endif |
| 370 | 371 |
| 371 #if !defined(OFFICIAL_BUILD) | 372 #if !defined(OFFICIAL_BUILD) |
| 372 extern const char kRendererCheckFalseTest[]; | 373 extern const char kRendererCheckFalseTest[]; |
| 373 #endif | 374 #endif |
| 374 | 375 |
| 375 #if defined(HAVE_XINPUT2) | 376 #if defined(HAVE_XINPUT2) |
| 376 extern const char kTouchDevices[]; | 377 extern const char kTouchDevices[]; |
| 377 #endif | 378 #endif |
| 378 | 379 |
| 379 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 380 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 380 // alphabetical order, or in one of the ifdefs (also in order in each section). | 381 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 381 | 382 |
| 382 } // namespace switches | 383 } // namespace switches |
| 383 | 384 |
| 384 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 385 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |