#include "components/os_crypt/sync/os_crypt_mocker.h"
#include "build/build_config.h"
#include "components/os_crypt/sync/os_crypt.h"
#if defined(USE_LIBSECRET) || defined(USE_KWALLET)
#include "components/os_crypt/sync/os_crypt_mocker_linux.h"
#endif
void OSCryptMocker::SetUp() { … }
std::string OSCryptMocker::GetRawEncryptionKey() { … }
#if BUILDFLAG(IS_APPLE)
void OSCryptMocker::SetBackendLocked(bool locked) {
OSCrypt::UseLockedMockKeychainForTesting(locked);
}
#endif
#if BUILDFLAG(IS_WIN)
void OSCryptMocker::SetLegacyEncryption(bool legacy) {
OSCrypt::SetLegacyEncryptionForTesting(legacy);
}
void OSCryptMocker::ResetState() {
OSCrypt::ResetStateForTesting();
}
#endif
void OSCryptMocker::TearDown() { … }