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 1476 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1487 // Uses mock keychain for testing purposes, which prevents blocking dialogs | 1487 // Uses mock keychain for testing purposes, which prevents blocking dialogs |
1488 // from causing timeouts. | 1488 // from causing timeouts. |
1489 const char kUseMockKeychain[] = "use-mock-keychain"; | 1489 const char kUseMockKeychain[] = "use-mock-keychain"; |
1490 #endif | 1490 #endif |
1491 | 1491 |
1492 #if defined(OS_WIN) | 1492 #if defined(OS_WIN) |
1493 // Disables profile desktop shortcuts handling, preventing their creation, | 1493 // Disables profile desktop shortcuts handling, preventing their creation, |
1494 // modification or removal. | 1494 // modification or removal. |
1495 const char kDisableDesktopShortcuts[] = "disable-desktop-shortcuts"; | 1495 const char kDisableDesktopShortcuts[] = "disable-desktop-shortcuts"; |
1496 | 1496 |
1497 // Enable Website Settings. The Website Settings UI will replace the Page Info | 1497 // Disables Website Settings. The Website Settings UI will replace the Page Info |
1498 // Bubble. | 1498 // Bubble. |
1499 const char kDisableWebsiteSettings[] = "disable-website-settings"; | 1499 const char kDisableWebsiteSettings[] = "disable-website-settings"; |
| 1500 |
| 1501 // Enables sync credential caching on Windows 8. |
| 1502 // See chrome/browser/sync/credential_cache_service_win.h. |
| 1503 const char kEnableSyncCredentialCaching[] = "enable-sync-credential-caching"; |
1500 #endif | 1504 #endif |
1501 | 1505 |
1502 #if defined(USE_AURA) | 1506 #if defined(USE_AURA) |
1503 // Use NativeTabContentsViewAura instead of the default implementation. | 1507 // Use NativeTabContentsViewAura instead of the default implementation. |
1504 const char kDisableTCVA[] = "disable-tcva"; | 1508 const char kDisableTCVA[] = "disable-tcva"; |
1505 | 1509 |
1506 // Opens an Ash window on startup. | 1510 // Opens an Ash window on startup. |
1507 extern const char kOpenAsh[] = "open-ash"; | 1511 extern const char kOpenAsh[] = "open-ash"; |
1508 #endif | 1512 #endif |
1509 | 1513 |
(...skipping 18 matching lines...) Expand all Loading... |
1528 | 1532 |
1529 // ----------------------------------------------------------------------------- | 1533 // ----------------------------------------------------------------------------- |
1530 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1534 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1531 // | 1535 // |
1532 // You were going to just dump your switches here, weren't you? Instead, please | 1536 // You were going to just dump your switches here, weren't you? Instead, please |
1533 // put them in alphabetical order above, or in order inside the appropriate | 1537 // put them in alphabetical order above, or in order inside the appropriate |
1534 // ifdef at the bottom. The order should match the header. | 1538 // ifdef at the bottom. The order should match the header. |
1535 // ----------------------------------------------------------------------------- | 1539 // ----------------------------------------------------------------------------- |
1536 | 1540 |
1537 } // namespace switches | 1541 } // namespace switches |
OLD | NEW |