diff options
Diffstat (limited to 'chrome/browser/net')
-rw-r--r-- | chrome/browser/net/chrome_cookie_notification_details.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/chrome/browser/net/chrome_cookie_notification_details.h b/chrome/browser/net/chrome_cookie_notification_details.h index 57df427..96b32ce 100644 --- a/chrome/browser/net/chrome_cookie_notification_details.h +++ b/chrome/browser/net/chrome_cookie_notification_details.h @@ -11,13 +11,16 @@ struct ChromeCookieDetails { public: ChromeCookieDetails(const net::CookieMonster::CanonicalCookie* cookie_copy, - bool is_removed) + bool is_removed, + net::CookieMonster::Delegate::ChangeCause cause) : cookie(cookie_copy), - removed(is_removed) { + removed(is_removed), + cause(cause) { } const net::CookieMonster::CanonicalCookie* cookie; bool removed; + net::CookieMonster::Delegate::ChangeCause cause; }; #endif // CHROME_BROWSER_NET_CHROME_COOKIE_NOTIFICATION_DETAILS_H_ |