| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 361 extern const char kEnableExposeForTabs[]; | 361 extern const char kEnableExposeForTabs[]; |
| 362 extern const char kRelauncherProcess[]; | 362 extern const char kRelauncherProcess[]; |
| 363 extern const char kUseMockKeychain[]; | 363 extern const char kUseMockKeychain[]; |
| 364 #endif | 364 #endif |
| 365 | 365 |
| 366 #if !defined(OS_MACOSX) | 366 #if !defined(OS_MACOSX) |
| 367 extern const char kKioskMode[]; | 367 extern const char kKioskMode[]; |
| 368 extern const char kKioskModePrinting[]; | 368 extern const char kKioskModePrinting[]; |
| 369 #endif | 369 #endif |
| 370 | 370 |
| 371 #if defined(OS_WIN) |
| 372 extern const char kDisableDesktopShortcuts[]; |
| 373 #endif |
| 374 |
| 371 #if defined(TOOLKIT_VIEWS) | 375 #if defined(TOOLKIT_VIEWS) |
| 372 extern const char kDebugViewsPaint[]; | 376 extern const char kDebugViewsPaint[]; |
| 373 extern const char kTouchDevices[]; | 377 extern const char kTouchDevices[]; |
| 374 #endif | 378 #endif |
| 375 | 379 |
| 376 #ifndef NDEBUG | 380 #ifndef NDEBUG |
| 377 extern const char kOAuthHostUrl[]; | 381 extern const char kOAuthHostUrl[]; |
| 378 extern const char kWebSocketLiveExperimentHost[]; | 382 extern const char kWebSocketLiveExperimentHost[]; |
| 379 extern const char kFileManagerExtensionPath[]; | 383 extern const char kFileManagerExtensionPath[]; |
| 380 extern const char kDumpProfileDependencyGraph[]; | 384 extern const char kDumpProfileDependencyGraph[]; |
| 381 #endif | 385 #endif |
| 382 | 386 |
| 383 #if defined(GOOGLE_CHROME_BUILD) | 387 #if defined(GOOGLE_CHROME_BUILD) |
| 384 extern const char kDisablePrintPreview[]; | 388 extern const char kDisablePrintPreview[]; |
| 385 #else | 389 #else |
| 386 extern const char kEnablePrintPreview[]; | 390 extern const char kEnablePrintPreview[]; |
| 387 #endif | 391 #endif |
| 388 | 392 |
| 389 #if defined(USE_AURA) | 393 #if defined(USE_AURA) |
| 390 extern const char kTestCompositor[]; | 394 extern const char kTestCompositor[]; |
| 391 #endif | 395 #endif |
| 392 | 396 |
| 393 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 397 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
| 394 // alphabetical order, or in one of the ifdefs (also in order in each section). | 398 // alphabetical order, or in one of the ifdefs (also in order in each section). |
| 395 | 399 |
| 396 } // namespace switches | 400 } // namespace switches |
| 397 | 401 |
| 398 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 402 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |