Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(753)

Unified Diff: chrome/browser/net/chrome_cookie_notification_details.h

Issue 2349823003: Pass a RemovalCause to CookieChangedCallback (Closed)
Patch Set: rebase Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/net/chrome_cookie_notification_details.h
diff --git a/chrome/browser/net/chrome_cookie_notification_details.h b/chrome/browser/net/chrome_cookie_notification_details.h
index 5b46b19bb5ab3b92032005a9bda6689271bc8ca5..25276bdab857867661b7730946a556920bbf0053 100644
--- a/chrome/browser/net/chrome_cookie_notification_details.h
+++ b/chrome/browser/net/chrome_cookie_notification_details.h
@@ -15,7 +15,7 @@ struct ChromeCookieDetails {
public:
ChromeCookieDetails(const net::CanonicalCookie* cookie_copy,
bool is_removed,
- net::CookieMonsterDelegate::ChangeCause cause)
+ net::CookieStore::ChangeCause cause)
: cookie(cookie_copy),
removed(is_removed),
cause(cause) {
@@ -23,7 +23,7 @@ struct ChromeCookieDetails {
const net::CanonicalCookie* cookie;
bool removed;
- net::CookieMonsterDelegate::ChangeCause cause;
+ net::CookieStore::ChangeCause cause;
};
#endif // CHROME_BROWSER_NET_CHROME_COOKIE_NOTIFICATION_DETAILS_H_

Powered by Google App Engine
This is Rietveld 408576698