#ifndef NET_COOKIES_COOKIE_PARTITION_KEY_COLLECTION_H_
#define NET_COOKIES_COOKIE_PARTITION_KEY_COLLECTION_H_
#include <iosfwd>
#include "base/containers/flat_set.h"
#include "base/functional/callback_forward.h"
#include "net/base/net_export.h"
#include "net/cookies/cookie_partition_key.h"
namespace net {
class NET_EXPORT CookiePartitionKeyCollection { … };
NET_EXPORT bool operator==(const CookiePartitionKeyCollection& lhs,
const CookiePartitionKeyCollection& rhs);
NET_EXPORT std::ostream& operator<<(std::ostream& os,
const CookiePartitionKeyCollection& keys);
}
#endif