blob: e442890fbaae1a17cd97c929015b9f8617cd82ea [file] [log] [blame]
[email protected]687510e2014-02-25 15:11:281// 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]c523d202014-03-18 01:34:544//
5#ifndef COMPONENTS_OS_CRYPT_OS_CRYPT_SWITCHES_H_
6#define COMPONENTS_OS_CRYPT_OS_CRYPT_SWITCHES_H_
[email protected]687510e2014-02-25 15:11:287
8// Defines all the command-line switches used by the encryptor component.
9
Matt Menkeef8aab12018-07-31 14:42:1710#include "base/component_export.h"
[email protected]92cdb1ca2014-02-28 18:34:1011#include "build/build_config.h"
[email protected]687510e2014-02-25 15:11:2812
[email protected]c523d202014-03-18 01:34:5413namespace os_crypt {
[email protected]687510e2014-02-25 15:11:2814namespace switches {
15
16#if defined(OS_MACOSX)
17
18// Uses mock keychain for testing purposes, which prevents blocking dialogs
19// from causing timeouts.
Matt Menkeef8aab12018-07-31 14:42:1720COMPONENT_EXPORT(OS_CRYPT) extern const char kUseMockKeychain[];
[email protected]687510e2014-02-25 15:11:2821
22#endif // OS_MACOSX
23
24} // namespace switches
[email protected]c523d202014-03-18 01:34:5425} // namespace os_crypt
[email protected]687510e2014-02-25 15:11:2826
[email protected]c523d202014-03-18 01:34:5427#endif // COMPONENTS_OS_CRYPT_OS_CRYPT_SWITCHES_H_