#ifndef COMPONENTS_COOKIE_CONFIG_COOKIE_STORE_UTIL_H_
#define COMPONENTS_COOKIE_CONFIG_COOKIE_STORE_UTIL_H_
#include <memory>
#include "base/component_export.h"
#include "base/memory/scoped_refptr.h"
namespace base {
class SequencedTaskRunner;
}
namespace net {
class CookieCryptoDelegate;
}
namespace os_crypt_async {
class OSCryptAsync;
}
namespace cookie_config {
COMPONENT_EXPORT(COMPONENTS_COOKIE_CONFIG)
std::unique_ptr<net::CookieCryptoDelegate> GetCookieCryptoDelegate(
os_crypt_async::OSCryptAsync* os_crypt_async,
scoped_refptr<base::SequencedTaskRunner> ui_task_runner);
}
#endif