Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(514)

Side by Side Diff: chrome/common/chrome_switches.cc

Issue 10885047: Metro mode switching (chrome side) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/common/pref_names.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 1512 matching lines...) Expand 10 before | Expand all | Expand 10 after
1523 const char kDisableDesktopShortcuts[] = "disable-desktop-shortcuts"; 1523 const char kDisableDesktopShortcuts[] = "disable-desktop-shortcuts";
1524 1524
1525 // Enables sync credential caching on Windows 8. 1525 // Enables sync credential caching on Windows 8.
1526 // See chrome/browser/sync/credential_cache_service_win.h. 1526 // See chrome/browser/sync/credential_cache_service_win.h.
1527 const char kEnableSyncCredentialCaching[] = "enable-sync-credential-caching"; 1527 const char kEnableSyncCredentialCaching[] = "enable-sync-credential-caching";
1528 1528
1529 // For the DelegateExecute verb handler to launch Chrome in metro mode on 1529 // For the DelegateExecute verb handler to launch Chrome in metro mode on
1530 // Windows 8 and higher. Used when relaunching metro Chrome. 1530 // Windows 8 and higher. Used when relaunching metro Chrome.
1531 const char kForceImmersive[] = "force-immersive"; 1531 const char kForceImmersive[] = "force-immersive";
1532 1532
1533 // For the DelegateExecute verb handler to launch Chrome in desktop mode on
1534 // Windows 8 and higher. Used when relaunching metro Chrome.
1535 const char kForceDesktop[] = "force-desktop";
1536
1533 // Relaunches metro Chrome on Windows 8 and higher using a given shortcut. 1537 // Relaunches metro Chrome on Windows 8 and higher using a given shortcut.
1534 const char kRelaunchShortcut[] = "relaunch-shortcut"; 1538 const char kRelaunchShortcut[] = "relaunch-shortcut";
1535 1539
1536 // Waits for the given handle to be signaled before relaunching metro Chrome on 1540 // Waits for the given handle to be signaled before relaunching metro Chrome on
1537 // Windows 8 and higher. 1541 // Windows 8 and higher.
1538 const char kWaitForHandle[] = "wait-for-handle"; 1542 const char kWaitForMutex[] = "wait-for-mutex";
1539 #endif 1543 #endif
1540 1544
1541 #if defined(USE_AURA) 1545 #if defined(USE_AURA)
1542 // Use NativeTabContentsViewAura instead of the default implementation. 1546 // Use NativeTabContentsViewAura instead of the default implementation.
1543 const char kDisableTCVA[] = "disable-tcva"; 1547 const char kDisableTCVA[] = "disable-tcva";
1544 1548
1545 // Opens an Ash window on startup. 1549 // Opens an Ash window on startup.
1546 extern const char kOpenAsh[] = "open-ash"; 1550 extern const char kOpenAsh[] = "open-ash";
1547 #endif 1551 #endif
1548 1552
(...skipping 18 matching lines...) Expand all
1567 1571
1568 // ----------------------------------------------------------------------------- 1572 // -----------------------------------------------------------------------------
1569 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1573 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1570 // 1574 //
1571 // You were going to just dump your switches here, weren't you? Instead, please 1575 // You were going to just dump your switches here, weren't you? Instead, please
1572 // put them in alphabetical order above, or in order inside the appropriate 1576 // put them in alphabetical order above, or in order inside the appropriate
1573 // ifdef at the bottom. The order should match the header. 1577 // ifdef at the bottom. The order should match the header.
1574 // ----------------------------------------------------------------------------- 1578 // -----------------------------------------------------------------------------
1575 1579
1576 } // namespace switches 1580 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/common/pref_names.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698