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

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: Fix license header Created 6 years, 9 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/test/base/test_launcher_utils.cc » ('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 1580 matching lines...) Expand 10 before | Expand all | Expand 10 after
1591 const char kEnableSimplifiedFullscreen[] = "enable-simplified-fullscreen"; 1591 const char kEnableSimplifiedFullscreen[] = "enable-simplified-fullscreen";
1592 1592
1593 // Performs Keychain reauthorization from the command line on behalf of a 1593 // Performs Keychain reauthorization from the command line on behalf of a
1594 // special Keychain reauthorization stub executable. Used during auto-update. 1594 // special Keychain reauthorization stub executable. Used during auto-update.
1595 const char kKeychainReauthorize[] = "keychain-reauthorize"; 1595 const char kKeychainReauthorize[] = "keychain-reauthorize";
1596 1596
1597 // A process type (switches::kProcessType) that relaunches the browser. See 1597 // A process type (switches::kProcessType) that relaunches the browser. See
1598 // chrome/browser/mac/relauncher.h. 1598 // chrome/browser/mac/relauncher.h.
1599 const char kRelauncherProcess[] = "relauncher"; 1599 const char kRelauncherProcess[] = "relauncher";
1600 1600
1601 // Uses mock keychain for testing purposes, which prevents blocking dialogs
1602 // from causing timeouts.
1603 const char kUseMockKeychain[] = "use-mock-keychain";
1604 #endif 1601 #endif
1605 1602
1606 // Use bubbles for content permissions requests instead of infobars. 1603 // Use bubbles for content permissions requests instead of infobars.
1607 const char kEnablePermissionsBubbles[] = "enable-permissions-bubbles"; 1604 const char kEnablePermissionsBubbles[] = "enable-permissions-bubbles";
1608 1605
1609 #if defined(OS_WIN) 1606 #if defined(OS_WIN)
1610 // Enables support to debug printing subsystem. 1607 // Enables support to debug printing subsystem.
1611 const char kDebugPrint[] = "debug-print"; 1608 const char kDebugPrint[] = "debug-print";
1612 1609
1613 // Force-enables the profile shortcut manager. This is needed for tests since 1610 // Force-enables the profile shortcut manager. This is needed for tests since
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
1664 1661
1665 // ----------------------------------------------------------------------------- 1662 // -----------------------------------------------------------------------------
1666 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1663 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1667 // 1664 //
1668 // You were going to just dump your switches here, weren't you? Instead, please 1665 // You were going to just dump your switches here, weren't you? Instead, please
1669 // put them in alphabetical order above, or in order inside the appropriate 1666 // put them in alphabetical order above, or in order inside the appropriate
1670 // ifdef at the bottom. The order should match the header. 1667 // ifdef at the bottom. The order should match the header.
1671 // ----------------------------------------------------------------------------- 1668 // -----------------------------------------------------------------------------
1672 1669
1673 } // namespace switches 1670 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/test/base/test_launcher_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698