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