blob: 4df069a72bcacf27e1ff931a512e773657385ac7 [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.
4
5// Defines all the command-line switches used by the encryptor component.
6
7#ifndef COMPONENTS_ENCRYPTOR__ENCRYPTOR_SWITCHES_H_
8#define COMPONENTS_ENCRYPTOR__ENCRYPTOR_SWITCHES_H_
9
[email protected]92cdb1ca2014-02-28 18:34:1010#include "build/build_config.h"
[email protected]687510e2014-02-25 15:11:2811
12namespace encryptor {
13namespace switches {
14
15#if defined(OS_MACOSX)
16
17// Uses mock keychain for testing purposes, which prevents blocking dialogs
18// from causing timeouts.
19extern const char kUseMockKeychain[];
20
21#endif // OS_MACOSX
22
23} // namespace switches
24} // namespace encryptor
25
26#endif // COMPONENTS_ENCRYPTOR__ENCRYPTOR_SWITCHES_H_