blob: dd160cbaf5396d2fbe0c36c3c4c4381b78c24f6e [file] [log] [blame]
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/os_crypt/os_crypt_mocker.h"
#include "components/os_crypt/os_crypt.h"
#if defined(USE_LIBSECRET)
#include "components/os_crypt/os_crypt_mocker_linux.h"
#endif
// static
void OSCryptMocker::SetUpWithSingleton() {
#if defined(OS_MACOSX)
OSCrypt::UseMockKeychain(true);
#elif defined(USE_LIBSECRET)
OSCryptMockerLinux::SetUpWithSingleton();
#endif
}
// static
void OSCryptMocker::TearDown() {
#if defined(OS_MACOSX)
OSCrypt::UseMockKeychain(false);
#elif defined(USE_LIBSECRET)
OSCryptMockerLinux::TearDown();
#endif
}