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 1485 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1496 // Uses mock keychain for testing purposes, which prevents blocking dialogs | 1496 // Uses mock keychain for testing purposes, which prevents blocking dialogs |
1497 // from causing timeouts. | 1497 // from causing timeouts. |
1498 const char kUseMockKeychain[] = "use-mock-keychain"; | 1498 const char kUseMockKeychain[] = "use-mock-keychain"; |
1499 #endif | 1499 #endif |
1500 | 1500 |
1501 #if defined(OS_WIN) | 1501 #if defined(OS_WIN) |
1502 // Disables profile desktop shortcuts handling, preventing their creation, | 1502 // Disables profile desktop shortcuts handling, preventing their creation, |
1503 // modification or removal. | 1503 // modification or removal. |
1504 const char kDisableDesktopShortcuts[] = "disable-desktop-shortcuts"; | 1504 const char kDisableDesktopShortcuts[] = "disable-desktop-shortcuts"; |
1505 | 1505 |
1506 // Disables Website Settings. The Website Settings UI will replace the Page Info | |
1507 // Bubble. | |
1508 const char kDisableWebsiteSettings[] = "disable-website-settings"; | |
1509 | |
1510 // Enables sync credential caching on Windows 8. | 1506 // Enables sync credential caching on Windows 8. |
1511 // See chrome/browser/sync/credential_cache_service_win.h. | 1507 // See chrome/browser/sync/credential_cache_service_win.h. |
1512 const char kEnableSyncCredentialCaching[] = "enable-sync-credential-caching"; | 1508 const char kEnableSyncCredentialCaching[] = "enable-sync-credential-caching"; |
1513 | 1509 |
1514 // For the DelegateExecute verb handler to launch Chrome in metro mode on | 1510 // For the DelegateExecute verb handler to launch Chrome in metro mode on |
1515 // Windows 8 and higher. Used when relaunching metro Chrome. | 1511 // Windows 8 and higher. Used when relaunching metro Chrome. |
1516 const char kForceImmersive[] = "force-immersive"; | 1512 const char kForceImmersive[] = "force-immersive"; |
1517 | 1513 |
1518 // Relaunches metro Chrome on Windows 8 and higher using a given shortcut. | 1514 // Relaunches metro Chrome on Windows 8 and higher using a given shortcut. |
1519 const char kRelaunchShortcut[] = "relaunch-shortcut"; | 1515 const char kRelaunchShortcut[] = "relaunch-shortcut"; |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1552 | 1548 |
1553 // ----------------------------------------------------------------------------- | 1549 // ----------------------------------------------------------------------------- |
1554 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1550 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1555 // | 1551 // |
1556 // You were going to just dump your switches here, weren't you? Instead, please | 1552 // You were going to just dump your switches here, weren't you? Instead, please |
1557 // put them in alphabetical order above, or in order inside the appropriate | 1553 // put them in alphabetical order above, or in order inside the appropriate |
1558 // ifdef at the bottom. The order should match the header. | 1554 // ifdef at the bottom. The order should match the header. |
1559 // ----------------------------------------------------------------------------- | 1555 // ----------------------------------------------------------------------------- |
1560 | 1556 |
1561 } // namespace switches | 1557 } // namespace switches |
OLD | NEW |