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