#ifndef NET_COOKIES_COOKIE_MONSTER_NETLOG_PARAMS_H_
#define NET_COOKIES_COOKIE_MONSTER_NETLOG_PARAMS_H_
#include "base/values.h"
#include "net/cookies/canonical_cookie.h"
#include "net/cookies/cookie_change_dispatcher.h"
#include "net/cookies/cookie_monster.h"
#include "net/cookies/cookie_store.h"
#include "net/log/net_log_capture_mode.h"
namespace net {
base::Value::Dict NetLogCookieMonsterConstructorParams(bool persistent_store);
base::Value::Dict NetLogCookieMonsterCookieAdded(
const CanonicalCookie* cookie,
bool sync_requested,
NetLogCaptureMode capture_mode);
base::Value::Dict NetLogCookieMonsterCookieDeleted(
const CanonicalCookie* cookie,
CookieChangeCause cause,
bool sync_requested,
NetLogCaptureMode capture_mode);
base::Value::Dict NetLogCookieMonsterCookieRejectedSecure(
const CanonicalCookie* old_cookie,
const CanonicalCookie* new_cookie,
NetLogCaptureMode capture_mode);
base::Value::Dict NetLogCookieMonsterCookieRejectedHttponly(
const CanonicalCookie* old_cookie,
const CanonicalCookie* new_cookie,
NetLogCaptureMode capture_mode);
base::Value::Dict NetLogCookieMonsterCookiePreservedSkippedSecure(
const CanonicalCookie* skipped_secure,
const CanonicalCookie* preserved,
const CanonicalCookie* new_cookie,
NetLogCaptureMode capture_mode);
}
#endif