Home | History | Annotate | Download | only in os_crypt
      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.
      4 //
      5 #ifndef COMPONENTS_OS_CRYPT_OS_CRYPT_SWITCHES_H_
      6 #define COMPONENTS_OS_CRYPT_OS_CRYPT_SWITCHES_H_
      7 
      8 // Defines all the command-line switches used by the encryptor component.
      9 
     10 #include "build/build_config.h"
     11 
     12 namespace os_crypt {
     13 namespace switches {
     14 
     15 #if defined(OS_MACOSX)
     16 
     17 // Uses mock keychain for testing purposes, which prevents blocking dialogs
     18 // from causing timeouts.
     19 extern const char kUseMockKeychain[];
     20 
     21 #endif  // OS_MACOSX
     22 
     23 }  // namespace switches
     24 }  // namespace os_crypt
     25 
     26 #endif  // COMPONENTS_OS_CRYPT_OS_CRYPT_SWITCHES_H_
     27