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

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

Issue 11817016: Delete unused kDisableDesktopShortcuts switch. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 11 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') | no next file » | 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 1556 matching lines...) Expand 10 before | Expand all | Expand 10 after
1567 // A process type (switches::kProcessType) that relaunches the browser. See 1567 // A process type (switches::kProcessType) that relaunches the browser. See
1568 // chrome/browser/mac/relauncher.h. 1568 // chrome/browser/mac/relauncher.h.
1569 const char kRelauncherProcess[] = "relauncher"; 1569 const char kRelauncherProcess[] = "relauncher";
1570 1570
1571 // Uses mock keychain for testing purposes, which prevents blocking dialogs 1571 // Uses mock keychain for testing purposes, which prevents blocking dialogs
1572 // from causing timeouts. 1572 // from causing timeouts.
1573 const char kUseMockKeychain[] = "use-mock-keychain"; 1573 const char kUseMockKeychain[] = "use-mock-keychain";
1574 #endif 1574 #endif
1575 1575
1576 #if defined(OS_WIN) 1576 #if defined(OS_WIN)
1577 // Disables profile desktop shortcuts handling, preventing their creation,
1578 // modification or removal.
1579 const char kDisableDesktopShortcuts[] = "disable-desktop-shortcuts";
1580
1581 // For the DelegateExecute verb handler to launch Chrome in metro mode on 1577 // For the DelegateExecute verb handler to launch Chrome in metro mode on
1582 // Windows 8 and higher. Used when relaunching metro Chrome. 1578 // Windows 8 and higher. Used when relaunching metro Chrome.
1583 const char kForceImmersive[] = "force-immersive"; 1579 const char kForceImmersive[] = "force-immersive";
1584 1580
1585 // For the DelegateExecute verb handler to launch Chrome in desktop mode on 1581 // For the DelegateExecute verb handler to launch Chrome in desktop mode on
1586 // Windows 8 and higher. Used when relaunching metro Chrome. 1582 // Windows 8 and higher. Used when relaunching metro Chrome.
1587 const char kForceDesktop[] = "force-desktop"; 1583 const char kForceDesktop[] = "force-desktop";
1588 1584
1589 // Allows for disabling the overlapped I/O for TCP reads. 1585 // Allows for disabling the overlapped I/O for TCP reads.
1590 // Possible values are "on" or "off". 1586 // Possible values are "on" or "off".
(...skipping 30 matching lines...) Expand all
1621 1617
1622 // ----------------------------------------------------------------------------- 1618 // -----------------------------------------------------------------------------
1623 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1619 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1624 // 1620 //
1625 // You were going to just dump your switches here, weren't you? Instead, please 1621 // You were going to just dump your switches here, weren't you? Instead, please
1626 // put them in alphabetical order above, or in order inside the appropriate 1622 // put them in alphabetical order above, or in order inside the appropriate
1627 // ifdef at the bottom. The order should match the header. 1623 // ifdef at the bottom. The order should match the header.
1628 // ----------------------------------------------------------------------------- 1624 // -----------------------------------------------------------------------------
1629 1625
1630 } // namespace switches 1626 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698