#ifndef NET_EXTRAS_SQLITE_SQLITE_PERSISTENT_COOKIE_STORE_H_
#define NET_EXTRAS_SQLITE_SQLITE_PERSISTENT_COOKIE_STORE_H_
#include <list>
#include <string>
#include <utility>
#include <vector>
#include "base/component_export.h"
#include "base/functional/callback_forward.h"
#include "base/memory/scoped_refptr.h"
#include "base/task/task_traits.h"
#include "net/cookies/cookie_monster.h"
#include "net/extras/sqlite/cookie_crypto_delegate.h"
#include "net/log/net_log_with_source.h"
namespace base {
class FilePath;
class SequencedTaskRunner;
}
namespace net {
class CanonicalCookie;
base::TaskPriority COMPONENT_EXPORT(NET_EXTRAS)
GetCookieStoreBackgroundSequencePriority();
class COMPONENT_EXPORT(NET_EXTRAS) SQLitePersistentCookieStore
: public CookieMonster::PersistentCookieStore { … };
}
#endif