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

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

Issue 176583002: [OS X] Wire up --use-mock-keychain command line flag to encryptor module (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 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 1585 matching lines...) Expand 10 before | Expand all | Expand 10 after
1596 const char kEnableSimplifiedFullscreen[] = "enable-simplified-fullscreen"; 1596 const char kEnableSimplifiedFullscreen[] = "enable-simplified-fullscreen";
1597 1597
1598 // Performs Keychain reauthorization from the command line on behalf of a 1598 // Performs Keychain reauthorization from the command line on behalf of a
1599 // special Keychain reauthorization stub executable. Used during auto-update. 1599 // special Keychain reauthorization stub executable. Used during auto-update.
1600 const char kKeychainReauthorize[] = "keychain-reauthorize"; 1600 const char kKeychainReauthorize[] = "keychain-reauthorize";
1601 1601
1602 // A process type (switches::kProcessType) that relaunches the browser. See 1602 // A process type (switches::kProcessType) that relaunches the browser. See
1603 // chrome/browser/mac/relauncher.h. 1603 // chrome/browser/mac/relauncher.h.
1604 const char kRelauncherProcess[] = "relauncher"; 1604 const char kRelauncherProcess[] = "relauncher";
1605 1605
1606 // Uses mock keychain for testing purposes, which prevents blocking dialogs
1607 // from causing timeouts.
1608 const char kUseMockKeychain[] = "use-mock-keychain";
1609 #endif 1606 #endif
1610 1607
1611 // Use bubbles for content permissions requests instead of infobars. 1608 // Use bubbles for content permissions requests instead of infobars.
1612 const char kEnablePermissionsBubbles[] = "enable-permissions-bubbles"; 1609 const char kEnablePermissionsBubbles[] = "enable-permissions-bubbles";
1613 1610
1614 #if defined(OS_WIN) 1611 #if defined(OS_WIN)
1615 // Enables support to debug printing subsystem. 1612 // Enables support to debug printing subsystem.
1616 const char kDebugPrint[] = "debug-print"; 1613 const char kDebugPrint[] = "debug-print";
1617 1614
1618 // Force-enables the profile shortcut manager. This is needed for tests since 1615 // Force-enables the profile shortcut manager. This is needed for tests since
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
1669 1666
1670 // ----------------------------------------------------------------------------- 1667 // -----------------------------------------------------------------------------
1671 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1668 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1672 // 1669 //
1673 // You were going to just dump your switches here, weren't you? Instead, please 1670 // You were going to just dump your switches here, weren't you? Instead, please
1674 // put them in alphabetical order above, or in order inside the appropriate 1671 // put them in alphabetical order above, or in order inside the appropriate
1675 // ifdef at the bottom. The order should match the header. 1672 // ifdef at the bottom. The order should match the header.
1676 // ----------------------------------------------------------------------------- 1673 // -----------------------------------------------------------------------------
1677 1674
1678 } // namespace switches 1675 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698