summaryrefslogtreecommitdiffstats
path: root/chrome/browser/net/chrome_cookie_notification_details.h
diff options
context:
space:
mode:
authordavidben <davidben@chromium.org>2015-10-12 13:22:42 -0700
committerCommit bot <commit-bot@chromium.org>2015-10-12 20:23:41 +0000
commit2a03078ea69b3ee89cc51c6cab1efd0b0ed16b66 (patch)
tree6e90cc36304c2ac24fd38d00802ea25f96b623de /chrome/browser/net/chrome_cookie_notification_details.h
parent2bbefb545d46f110b490d639442bb6fbf311cbf9 (diff)
downloadchromium_src-2a03078ea69b3ee89cc51c6cab1efd0b0ed16b66.zip
chromium_src-2a03078ea69b3ee89cc51c6cab1efd0b0ed16b66.tar.gz
chromium_src-2a03078ea69b3ee89cc51c6cab1efd0b0ed16b66.tar.bz2
Get rid of CookieMonster::Delegate typedef.
Almost everything's switched to the new one by now. Finish the job. BUG=none Review URL: https://codereview.chromium.org/1392973005 Cr-Commit-Position: refs/heads/master@{#353586}
Diffstat (limited to 'chrome/browser/net/chrome_cookie_notification_details.h')
-rw-r--r--chrome/browser/net/chrome_cookie_notification_details.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/net/chrome_cookie_notification_details.h b/chrome/browser/net/chrome_cookie_notification_details.h
index d54f280..5b46b19 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::CookieMonster::Delegate::ChangeCause cause)
+ net::CookieMonsterDelegate::ChangeCause cause)
: cookie(cookie_copy),
removed(is_removed),
cause(cause) {
@@ -23,7 +23,7 @@ struct ChromeCookieDetails {
const net::CanonicalCookie* cookie;
bool removed;
- net::CookieMonster::Delegate::ChangeCause cause;
+ net::CookieMonsterDelegate::ChangeCause cause;
};
#endif // CHROME_BROWSER_NET_CHROME_COOKIE_NOTIFICATION_DETAILS_H_