summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/extension_cookie_monster_delegate.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/extensions/extension_cookie_monster_delegate.cc')
-rw-r--r--chrome/browser/extensions/extension_cookie_monster_delegate.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/extensions/extension_cookie_monster_delegate.cc b/chrome/browser/extensions/extension_cookie_monster_delegate.cc
index e07efbd..c1316cd 100644
--- a/chrome/browser/extensions/extension_cookie_monster_delegate.cc
+++ b/chrome/browser/extensions/extension_cookie_monster_delegate.cc
@@ -30,11 +30,11 @@ ExtensionCookieMonsterDelegate::ExtensionCookieMonsterDelegate(Profile* profile)
DCHECK(profile);
}
-// net::CookieMonster::Delegate implementation.
+// net::CookieMonsterDelegate implementation.
void ExtensionCookieMonsterDelegate::OnCookieChanged(
const net::CanonicalCookie& cookie,
bool removed,
- net::CookieMonster::Delegate::ChangeCause cause) {
+ net::CookieMonsterDelegate::ChangeCause cause) {
content::BrowserThread::PostTask(
content::BrowserThread::UI, FROM_HERE,
base::Bind(&ExtensionCookieMonsterDelegate::OnCookieChangedAsyncHelper,
@@ -46,7 +46,7 @@ ExtensionCookieMonsterDelegate::~ExtensionCookieMonsterDelegate() {}
void ExtensionCookieMonsterDelegate::OnCookieChangedAsyncHelper(
const net::CanonicalCookie& cookie,
bool removed,
- net::CookieMonster::Delegate::ChangeCause cause) {
+ net::CookieMonsterDelegate::ChangeCause cause) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
Profile* profile = profile_getter_.Run();
if (profile) {