#ifndef NET_COOKIES_COOKIE_STORE_TEST_HELPERS_H_
#define NET_COOKIES_COOKIE_STORE_TEST_HELPERS_H_
#include <memory>
#include <optional>
#include <string>
#include <vector>
#include "base/functional/callback_forward.h"
#include "base/synchronization/lock.h"
#include "net/cookies/cookie_change_dispatcher.h"
#include "net/cookies/cookie_monster.h"
#include "net/log/net_log_with_source.h"
#include "testing/gtest/include/gtest/gtest.h"
class GURL;
namespace net {
class DelayedCookieMonsterChangeDispatcher : public CookieChangeDispatcher { … };
class DelayedCookieMonster : public CookieStore { … };
class CookieURLHelper { … };
class FlushablePersistentStore : public CookieMonster::PersistentCookieStore { … };
class CallbackCounter : public base::RefCountedThreadSafe<CallbackCounter> { … };
std::string FutureCookieExpirationString();
}
#endif