#include "components/os_crypt/async/browser/test_utils.h"
#include <memory>
#include "base/callback_list.h"
#include "base/functional/bind.h"
#include "base/no_destructor.h"
#include "base/task/sequenced_task_runner.h"
#include "components/os_crypt/async/browser/os_crypt_async.h"
#include "components/os_crypt/async/common/algorithm.mojom.h"
#include "components/os_crypt/async/common/encryptor.h"
#include "crypto/random.h"
namespace os_crypt_async {
class TestOSCryptAsync : public OSCryptAsync { … };
std::unique_ptr<OSCryptAsync> GetTestOSCryptAsyncForTesting(
bool is_sync_for_unittests) { … }
Encryptor GetTestEncryptorForTesting() { … }
}