[email protected] | 687510e | 2014-02-25 15:11:28 | [diff] [blame] | 1 | // Copyright 2014 The Chromium Authors. All rights reserved. |
2 | // Use of this source code is governed by a BSD-style license that can be | ||||
3 | // found in the LICENSE file. | ||||
[email protected] | c523d20 | 2014-03-18 01:34:54 | [diff] [blame] | 4 | // |
5 | #ifndef COMPONENTS_OS_CRYPT_OS_CRYPT_SWITCHES_H_ | ||||
6 | #define COMPONENTS_OS_CRYPT_OS_CRYPT_SWITCHES_H_ | ||||
[email protected] | 687510e | 2014-02-25 15:11:28 | [diff] [blame] | 7 | |
8 | // Defines all the command-line switches used by the encryptor component. | ||||
9 | |||||
Matt Menke | ef8aab1 | 2018-07-31 14:42:17 | [diff] [blame] | 10 | #include "base/component_export.h" |
[email protected] | 92cdb1ca | 2014-02-28 18:34:10 | [diff] [blame] | 11 | #include "build/build_config.h" |
[email protected] | 687510e | 2014-02-25 15:11:28 | [diff] [blame] | 12 | |
[email protected] | c523d20 | 2014-03-18 01:34:54 | [diff] [blame] | 13 | namespace os_crypt { |
[email protected] | 687510e | 2014-02-25 15:11:28 | [diff] [blame] | 14 | namespace switches { |
15 | |||||
16 | #if defined(OS_MACOSX) | ||||
17 | |||||
18 | // Uses mock keychain for testing purposes, which prevents blocking dialogs | ||||
19 | // from causing timeouts. | ||||
Matt Menke | ef8aab1 | 2018-07-31 14:42:17 | [diff] [blame] | 20 | COMPONENT_EXPORT(OS_CRYPT) extern const char kUseMockKeychain[]; |
[email protected] | 687510e | 2014-02-25 15:11:28 | [diff] [blame] | 21 | |
22 | #endif // OS_MACOSX | ||||
23 | |||||
24 | } // namespace switches | ||||
[email protected] | c523d20 | 2014-03-18 01:34:54 | [diff] [blame] | 25 | } // namespace os_crypt |
[email protected] | 687510e | 2014-02-25 15:11:28 | [diff] [blame] | 26 | |
[email protected] | c523d20 | 2014-03-18 01:34:54 | [diff] [blame] | 27 | #endif // COMPONENTS_OS_CRYPT_OS_CRYPT_SWITCHES_H_ |