| 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 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 341 #endif | 341 #endif |
| 342 | 342 |
| 343 #if defined(OS_POSIX) | 343 #if defined(OS_POSIX) |
| 344 extern const char kEnableCrashReporter[]; | 344 extern const char kEnableCrashReporter[]; |
| 345 extern const char kNoProcessSingletonDialog[]; | 345 extern const char kNoProcessSingletonDialog[]; |
| 346 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) | 346 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) |
| 347 extern const char kPasswordStore[]; | 347 extern const char kPasswordStore[]; |
| 348 #endif | 348 #endif |
| 349 #endif | 349 #endif |
| 350 | 350 |
| 351 #if defined(OS_MACOSX) |
| 352 extern const char kEnableExposeForTabs[]; |
| 353 #endif |
| 354 |
| 351 #if !defined(OS_MACOSX) | 355 #if !defined(OS_MACOSX) |
| 352 extern const char kKioskMode[]; | 356 extern const char kKioskMode[]; |
| 353 #endif | 357 #endif |
| 354 | 358 |
| 355 #if defined(TOOLKIT_VIEWS) | 359 #if defined(TOOLKIT_VIEWS) |
| 356 extern const char kDebugViewsPaint[]; | 360 extern const char kDebugViewsPaint[]; |
| 357 #endif | 361 #endif |
| 358 | 362 |
| 359 #ifndef NDEBUG | 363 #ifndef NDEBUG |
| 360 extern const char kClearTokenService[]; | 364 extern const char kClearTokenService[]; |
| 361 extern const char kGearsPluginPathOverride[]; | 365 extern const char kGearsPluginPathOverride[]; |
| 362 extern const char kSetToken[]; | 366 extern const char kSetToken[]; |
| 363 extern const char kWebSocketLiveExperimentHost[]; | 367 extern const char kWebSocketLiveExperimentHost[]; |
| 364 #endif | 368 #endif |
| 365 | 369 |
| 366 #if !defined(OFFICIAL_BUILD) | 370 #if !defined(OFFICIAL_BUILD) |
| 367 extern const char kRendererCheckFalseTest[]; | 371 extern const char kRendererCheckFalseTest[]; |
| 368 #endif | 372 #endif |
| 369 | 373 |
| 370 #if defined(HAVE_XINPUT2) | 374 #if defined(HAVE_XINPUT2) |
| 371 extern const char kTouchDevices[]; | 375 extern const char kTouchDevices[]; |
| 372 #endif | 376 #endif |
| 373 | 377 |
| 374 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 378 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 375 // alphabetical order, or in one of the ifdefs (also in order in each section). | 379 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 376 | 380 |
| 377 } // namespace switches | 381 } // namespace switches |
| 378 | 382 |
| 379 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 383 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |