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 1483 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 // Disables 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 | 1500 |
1501 // Enables sync credential caching on Windows 8. | 1501 // Enables sync credential caching on Windows 8. |
1502 // See chrome/browser/sync/credential_cache_service_win.h. | 1502 // See chrome/browser/sync/credential_cache_service_win.h. |
1503 const char kEnableSyncCredentialCaching[] = "enable-sync-credential-caching"; | 1503 const char kEnableSyncCredentialCaching[] = "enable-sync-credential-caching"; |
| 1504 |
| 1505 // For the DelegateExecute verb handler to launch Chrome in metro mode on |
| 1506 // Windows 8 and higher. Used when relaunching metro Chrome. |
| 1507 const char kForceImmersive[] = "force-immersive"; |
| 1508 |
| 1509 // Relaunches metro Chrome on Windows 8 and higher using a given shortcut. |
| 1510 const char kRelaunchShortcut[] = "relaunch-shortcut"; |
| 1511 |
| 1512 // Waits for the given handle to be signaled before relaunching metro Chrome on |
| 1513 // Windows 8 and higher. |
| 1514 const char kWaitForHandle[] = "wait-for-handle"; |
1504 #endif | 1515 #endif |
1505 | 1516 |
1506 #if defined(USE_AURA) | 1517 #if defined(USE_AURA) |
1507 // Use NativeTabContentsViewAura instead of the default implementation. | 1518 // Use NativeTabContentsViewAura instead of the default implementation. |
1508 const char kDisableTCVA[] = "disable-tcva"; | 1519 const char kDisableTCVA[] = "disable-tcva"; |
1509 | 1520 |
1510 // Opens an Ash window on startup. | 1521 // Opens an Ash window on startup. |
1511 extern const char kOpenAsh[] = "open-ash"; | 1522 extern const char kOpenAsh[] = "open-ash"; |
1512 #endif | 1523 #endif |
1513 | 1524 |
(...skipping 18 matching lines...) Expand all Loading... |
1532 | 1543 |
1533 // ----------------------------------------------------------------------------- | 1544 // ----------------------------------------------------------------------------- |
1534 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1545 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1535 // | 1546 // |
1536 // You were going to just dump your switches here, weren't you? Instead, please | 1547 // You were going to just dump your switches here, weren't you? Instead, please |
1537 // put them in alphabetical order above, or in order inside the appropriate | 1548 // put them in alphabetical order above, or in order inside the appropriate |
1538 // ifdef at the bottom. The order should match the header. | 1549 // ifdef at the bottom. The order should match the header. |
1539 // ----------------------------------------------------------------------------- | 1550 // ----------------------------------------------------------------------------- |
1540 | 1551 |
1541 } // namespace switches | 1552 } // namespace switches |
OLD | NEW |