Chromium Code Reviews| Index: components/encryptor/encryptor_switches.h |
| diff --git a/components/encryptor/encryptor_switches.h b/components/encryptor/encryptor_switches.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..3b2b60fb0e1b235a08ba3c2a93fd0ac17736d646 |
| --- /dev/null |
| +++ b/components/encryptor/encryptor_switches.h |
| @@ -0,0 +1,26 @@ |
| +// Copyright (c) 2014 The Chromium Authors. All rights reserved. |
|
Jói
2014/02/24 12:50:22
I don't think we use the (c) bit any more.
|
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +// Defines all the command-line switches used by the encryptor component. |
| + |
| +#ifndef COMPONENTS_ENCRYPTOR__ENCRYPTOR_SWITCHES_H_ |
| +#define COMPONENTS_ENCRYPTOR__ENCRYPTOR_SWITCHES_H_ |
| + |
| +#include "base/basictypes.h" |
| + |
| +namespace encryptor { |
| +namespace switches { |
| + |
| +#if defined(OS_MACOSX) |
| + |
| +// Uses mock keychain for testing purposes, which prevents blocking dialogs |
| +// from causing timeouts. |
| +extern const char kUseMockKeychain[]; |
| + |
| +#endif // OS_MACOSX |
| + |
| +} // namespace switches |
| +} // namespace encryptor |
| + |
| +#endif // COMPONENTS_ENCRYPTOR__ENCRYPTOR_SWITCHES_H_ |