| 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 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 327 #endif | 327 #endif |
| 328 | 328 |
| 329 #if defined(OS_POSIX) | 329 #if defined(OS_POSIX) |
| 330 extern const char kEnableCrashReporter[]; | 330 extern const char kEnableCrashReporter[]; |
| 331 extern const char kNoProcessSingletonDialog[]; | 331 extern const char kNoProcessSingletonDialog[]; |
| 332 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) | 332 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) |
| 333 extern const char kPasswordStore[]; | 333 extern const char kPasswordStore[]; |
| 334 #endif | 334 #endif |
| 335 #endif | 335 #endif |
| 336 | 336 |
| 337 #if defined(OS_MACOSX) |
| 338 extern const char kEnableExposeForTabs[]; |
| 339 #endif |
| 340 |
| 337 #if !defined(OS_MACOSX) | 341 #if !defined(OS_MACOSX) |
| 338 extern const char kKioskMode[]; | 342 extern const char kKioskMode[]; |
| 339 #endif | 343 #endif |
| 340 | 344 |
| 341 #if defined(TOOLKIT_VIEWS) | 345 #if defined(TOOLKIT_VIEWS) |
| 342 extern const char kDebugViewsPaint[]; | 346 extern const char kDebugViewsPaint[]; |
| 343 #endif | 347 #endif |
| 344 | 348 |
| 345 #ifndef NDEBUG | 349 #ifndef NDEBUG |
| 346 extern const char kClearTokenService[]; | 350 extern const char kClearTokenService[]; |
| 347 extern const char kSetToken[]; | 351 extern const char kSetToken[]; |
| 348 extern const char kWebSocketLiveExperimentHost[]; | 352 extern const char kWebSocketLiveExperimentHost[]; |
| 349 #endif | 353 #endif |
| 350 | 354 |
| 351 #if !defined(OFFICIAL_BUILD) | 355 #if !defined(OFFICIAL_BUILD) |
| 352 extern const char kRendererCheckFalseTest[]; | 356 extern const char kRendererCheckFalseTest[]; |
| 353 #endif | 357 #endif |
| 354 | 358 |
| 355 #if defined(HAVE_XINPUT2) | 359 #if defined(HAVE_XINPUT2) |
| 356 extern const char kTouchDevices[]; | 360 extern const char kTouchDevices[]; |
| 357 #endif | 361 #endif |
| 358 | 362 |
| 359 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 363 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 360 // alphabetical order, or in one of the ifdefs (also in order in each section). | 364 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 361 | 365 |
| 362 } // namespace switches | 366 } // namespace switches |
| 363 | 367 |
| 364 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 368 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |