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 #include "chrome/common/chrome_switches.h" | 5 #include "chrome/common/chrome_switches.h" |
6 | 6 |
7 #include "base/base_switches.h" | 7 #include "base/base_switches.h" |
8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
9 | 9 |
10 namespace switches { | 10 namespace switches { |
(...skipping 1495 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1506 // Uses mock keychain for testing purposes, which prevents blocking dialogs | 1506 // Uses mock keychain for testing purposes, which prevents blocking dialogs |
1507 // from causing timeouts. | 1507 // from causing timeouts. |
1508 const char kUseMockKeychain[] = "use-mock-keychain"; | 1508 const char kUseMockKeychain[] = "use-mock-keychain"; |
1509 #endif | 1509 #endif |
1510 | 1510 |
1511 #if defined(OS_WIN) | 1511 #if defined(OS_WIN) |
1512 // Disables profile desktop shortcuts handling, preventing their creation, | 1512 // Disables profile desktop shortcuts handling, preventing their creation, |
1513 // modification or removal. | 1513 // modification or removal. |
1514 const char kDisableDesktopShortcuts[] = "disable-desktop-shortcuts"; | 1514 const char kDisableDesktopShortcuts[] = "disable-desktop-shortcuts"; |
1515 | 1515 |
1516 // Enables sync credential caching on Windows 8. | 1516 // Disables sync credential caching on Windows 8. |
1517 // See chrome/browser/sync/credential_cache_service_win.h. | 1517 // See chrome/browser/sync/credential_cache_service_win.h. |
1518 const char kEnableSyncCredentialCaching[] = "enable-sync-credential-caching"; | 1518 const char kDisableSyncCredentialCaching[] = "disable-sync-credential-caching"; |
1519 | 1519 |
1520 // For the DelegateExecute verb handler to launch Chrome in metro mode on | 1520 // For the DelegateExecute verb handler to launch Chrome in metro mode on |
1521 // Windows 8 and higher. Used when relaunching metro Chrome. | 1521 // Windows 8 and higher. Used when relaunching metro Chrome. |
1522 const char kForceImmersive[] = "force-immersive"; | 1522 const char kForceImmersive[] = "force-immersive"; |
1523 | 1523 |
1524 // Relaunches metro Chrome on Windows 8 and higher using a given shortcut. | 1524 // Relaunches metro Chrome on Windows 8 and higher using a given shortcut. |
1525 const char kRelaunchShortcut[] = "relaunch-shortcut"; | 1525 const char kRelaunchShortcut[] = "relaunch-shortcut"; |
1526 | 1526 |
1527 // Waits for the given handle to be signaled before relaunching metro Chrome on | 1527 // Waits for the given handle to be signaled before relaunching metro Chrome on |
1528 // Windows 8 and higher. | 1528 // Windows 8 and higher. |
(...skipping 29 matching lines...) Expand all Loading... |
1558 | 1558 |
1559 // ----------------------------------------------------------------------------- | 1559 // ----------------------------------------------------------------------------- |
1560 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1560 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1561 // | 1561 // |
1562 // You were going to just dump your switches here, weren't you? Instead, please | 1562 // You were going to just dump your switches here, weren't you? Instead, please |
1563 // put them in alphabetical order above, or in order inside the appropriate | 1563 // put them in alphabetical order above, or in order inside the appropriate |
1564 // ifdef at the bottom. The order should match the header. | 1564 // ifdef at the bottom. The order should match the header. |
1565 // ----------------------------------------------------------------------------- | 1565 // ----------------------------------------------------------------------------- |
1566 | 1566 |
1567 } // namespace switches | 1567 } // namespace switches |
OLD | NEW |