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

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
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 1552 matching lines...) Expand 10 before | Expand all | Expand 10 after
1563 const char kDisableDesktopShortcuts[] = "disable-desktop-shortcuts"; 1563 const char kDisableDesktopShortcuts[] = "disable-desktop-shortcuts";
1564 1564
1565 // Enables sync credential caching on Windows 8. 1565 // Enables sync credential caching on Windows 8.
1566 // See chrome/browser/sync/credential_cache_service_win.h. 1566 // See chrome/browser/sync/credential_cache_service_win.h.
1567 const char kEnableSyncCredentialCaching[] = "enable-sync-credential-caching"; 1567 const char kEnableSyncCredentialCaching[] = "enable-sync-credential-caching";
1568 1568
1569 // For the DelegateExecute verb handler to launch Chrome in metro mode on 1569 // For the DelegateExecute verb handler to launch Chrome in metro mode on
1570 // Windows 8 and higher. Used when relaunching metro Chrome. 1570 // Windows 8 and higher. Used when relaunching metro Chrome.
1571 const char kForceImmersive[] = "force-immersive"; 1571 const char kForceImmersive[] = "force-immersive";
1572 1572
1573 // For the DelegateExecute verb handler to launch Chrome in desktop mode on
1574 // Windows 8 and higher. Used when relaunching metro Chrome.
1575 const char kForceDesktop[] = "force-desktop";
1576
1573 // Relaunches metro Chrome on Windows 8 and higher using a given shortcut. 1577 // Relaunches metro Chrome on Windows 8 and higher using a given shortcut.
1574 const char kRelaunchShortcut[] = "relaunch-shortcut"; 1578 const char kRelaunchShortcut[] = "relaunch-shortcut";
1575 1579
1576 // Waits for the given handle to be signaled before relaunching metro Chrome on 1580 // Waits for the given handle to be signaled before relaunching metro Chrome on
1577 // Windows 8 and higher. 1581 // Windows 8 and higher.
1578 const char kWaitForHandle[] = "wait-for-handle"; 1582 const char kWaitForMutex[] = "wait-for-mutex";
1579 #endif 1583 #endif
1580 1584
1581 #if defined(USE_AURA) 1585 #if defined(USE_AURA)
1582 // Use NativeTabContentsViewAura instead of the default implementation. 1586 // Use NativeTabContentsViewAura instead of the default implementation.
1583 const char kDisableTCVA[] = "disable-tcva"; 1587 const char kDisableTCVA[] = "disable-tcva";
1584 1588
1585 // Opens an Ash window on startup. 1589 // Opens an Ash window on startup.
1586 extern const char kOpenAsh[] = "open-ash"; 1590 extern const char kOpenAsh[] = "open-ash";
1587 #endif 1591 #endif
1588 1592
(...skipping 18 matching lines...) Expand all
1607 1611
1608 // ----------------------------------------------------------------------------- 1612 // -----------------------------------------------------------------------------
1609 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1613 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1610 // 1614 //
1611 // You were going to just dump your switches here, weren't you? Instead, please 1615 // You were going to just dump your switches here, weren't you? Instead, please
1612 // put them in alphabetical order above, or in order inside the appropriate 1616 // put them in alphabetical order above, or in order inside the appropriate
1613 // ifdef at the bottom. The order should match the header. 1617 // ifdef at the bottom. The order should match the header.
1614 // ----------------------------------------------------------------------------- 1618 // -----------------------------------------------------------------------------
1615 1619
1616 } // namespace switches 1620 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698