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 1518 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1529 // Uses mock keychain for testing purposes, which prevents blocking dialogs | 1529 // Uses mock keychain for testing purposes, which prevents blocking dialogs |
1530 // from causing timeouts. | 1530 // from causing timeouts. |
1531 const char kUseMockKeychain[] = "use-mock-keychain"; | 1531 const char kUseMockKeychain[] = "use-mock-keychain"; |
1532 #endif | 1532 #endif |
1533 | 1533 |
1534 #if defined(OS_WIN) | 1534 #if defined(OS_WIN) |
1535 // Disables profile desktop shortcuts handling, preventing their creation, | 1535 // Disables profile desktop shortcuts handling, preventing their creation, |
1536 // modification or removal. | 1536 // modification or removal. |
1537 const char kDisableDesktopShortcuts[] = "disable-desktop-shortcuts"; | 1537 const char kDisableDesktopShortcuts[] = "disable-desktop-shortcuts"; |
1538 | 1538 |
1539 // Disables sync credential caching on Windows 8. | 1539 // Enables sync credential caching on Windows 8. |
1540 // See chrome/browser/sync/credential_cache_service_win.h. | 1540 // See chrome/browser/sync/credential_cache_service_win.h. |
1541 const char kDisableSyncCredentialCaching[] = "disable-sync-credential-caching"; | 1541 const char kEnableSyncCredentialCaching[] = "enable-sync-credential-caching"; |
1542 | 1542 |
1543 // For the DelegateExecute verb handler to launch Chrome in metro mode on | 1543 // For the DelegateExecute verb handler to launch Chrome in metro mode on |
1544 // Windows 8 and higher. Used when relaunching metro Chrome. | 1544 // Windows 8 and higher. Used when relaunching metro Chrome. |
1545 const char kForceImmersive[] = "force-immersive"; | 1545 const char kForceImmersive[] = "force-immersive"; |
1546 | 1546 |
1547 // Relaunches metro Chrome on Windows 8 and higher using a given shortcut. | 1547 // Relaunches metro Chrome on Windows 8 and higher using a given shortcut. |
1548 const char kRelaunchShortcut[] = "relaunch-shortcut"; | 1548 const char kRelaunchShortcut[] = "relaunch-shortcut"; |
1549 | 1549 |
1550 // Waits for the given handle to be signaled before relaunching metro Chrome on | 1550 // Waits for the given handle to be signaled before relaunching metro Chrome on |
1551 // Windows 8 and higher. | 1551 // Windows 8 and higher. |
(...skipping 29 matching lines...) Expand all Loading... |
1581 | 1581 |
1582 // ----------------------------------------------------------------------------- | 1582 // ----------------------------------------------------------------------------- |
1583 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1583 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1584 // | 1584 // |
1585 // You were going to just dump your switches here, weren't you? Instead, please | 1585 // You were going to just dump your switches here, weren't you? Instead, please |
1586 // put them in alphabetical order above, or in order inside the appropriate | 1586 // put them in alphabetical order above, or in order inside the appropriate |
1587 // ifdef at the bottom. The order should match the header. | 1587 // ifdef at the bottom. The order should match the header. |
1588 // ----------------------------------------------------------------------------- | 1588 // ----------------------------------------------------------------------------- |
1589 | 1589 |
1590 } // namespace switches | 1590 } // namespace switches |
OLD | NEW |