| 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 | 9 |
| 10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
| (...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 421 extern const char kKeychainReauthorize[]; | 421 extern const char kKeychainReauthorize[]; |
| 422 extern const char kRelauncherProcess[]; | 422 extern const char kRelauncherProcess[]; |
| 423 extern const char kUseMockKeychain[]; | 423 extern const char kUseMockKeychain[]; |
| 424 #endif | 424 #endif |
| 425 | 425 |
| 426 #if defined(OS_WIN) | 426 #if defined(OS_WIN) |
| 427 extern const char kDisableDesktopShortcuts[]; | 427 extern const char kDisableDesktopShortcuts[]; |
| 428 extern const char kEnableSyncCredentialCaching[]; | 428 extern const char kEnableSyncCredentialCaching[]; |
| 429 extern const char kForceImmersive[]; | 429 extern const char kForceImmersive[]; |
| 430 extern const char kForceDesktop[]; | 430 extern const char kForceDesktop[]; |
| 431 extern const char kOverlappedRead[]; |
| 431 extern const char kPrintRaster[]; | 432 extern const char kPrintRaster[]; |
| 432 extern const char kRelaunchShortcut[]; | 433 extern const char kRelaunchShortcut[]; |
| 433 extern const char kWaitForMutex[]; | 434 extern const char kWaitForMutex[]; |
| 434 #endif | 435 #endif |
| 435 | 436 |
| 436 #if defined(USE_AURA) | 437 #if defined(USE_AURA) |
| 437 extern const char kOpenAsh[]; | 438 extern const char kOpenAsh[]; |
| 438 #endif | 439 #endif |
| 439 | 440 |
| 440 #if defined(USE_ASH) | 441 #if defined(USE_ASH) |
| (...skipping 18 matching lines...) Expand all Loading... |
| 459 | 460 |
| 460 namespace chrome { | 461 namespace chrome { |
| 461 | 462 |
| 462 // Returns true if the new frameless constrained window style is enabled. | 463 // Returns true if the new frameless constrained window style is enabled. |
| 463 // TODO(sail): Remove this once the feature is fully baked. | 464 // TODO(sail): Remove this once the feature is fully baked. |
| 464 bool IsFramelessConstrainedDialogEnabled(); | 465 bool IsFramelessConstrainedDialogEnabled(); |
| 465 | 466 |
| 466 } // namespace chrome | 467 } // namespace chrome |
| 467 | 468 |
| 468 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 469 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |