| 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 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 349 #endif | 349 #endif |
| 350 | 350 |
| 351 #if defined(TOUCH_UI) | 351 #if defined(TOUCH_UI) |
| 352 extern const char kKeepMouseCursor[]; | 352 extern const char kKeepMouseCursor[]; |
| 353 #endif | 353 #endif |
| 354 | 354 |
| 355 #ifndef NDEBUG | 355 #ifndef NDEBUG |
| 356 extern const char kClearTokenService[]; | 356 extern const char kClearTokenService[]; |
| 357 extern const char kSetToken[]; | 357 extern const char kSetToken[]; |
| 358 extern const char kWebSocketLiveExperimentHost[]; | 358 extern const char kWebSocketLiveExperimentHost[]; |
| 359 extern const char kExposePrivateExtensionApi[]; |
| 359 #endif | 360 #endif |
| 360 | 361 |
| 361 #if !defined(OFFICIAL_BUILD) | 362 #if !defined(OFFICIAL_BUILD) |
| 362 extern const char kRendererCheckFalseTest[]; | 363 extern const char kRendererCheckFalseTest[]; |
| 363 #endif | 364 #endif |
| 364 | 365 |
| 365 #if defined(HAVE_XINPUT2) | 366 #if defined(HAVE_XINPUT2) |
| 366 extern const char kTouchDevices[]; | 367 extern const char kTouchDevices[]; |
| 367 #endif | 368 #endif |
| 368 | 369 |
| 369 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 370 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 370 // alphabetical order, or in one of the ifdefs (also in order in each section). | 371 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 371 | 372 |
| 372 } // namespace switches | 373 } // namespace switches |
| 373 | 374 |
| 374 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 375 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |