diff options
Diffstat (limited to 'net')
-rw-r--r-- | net/cookies/cookie_monster.h | 1 | ||||
-rw-r--r-- | net/cookies/cookie_monster_store_test.cc | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/net/cookies/cookie_monster.h b/net/cookies/cookie_monster.h index ced1c23..72d09d0 100644 --- a/net/cookies/cookie_monster.h +++ b/net/cookies/cookie_monster.h @@ -67,7 +67,6 @@ class ParsedCookie; class NET_EXPORT CookieMonster : public CookieStore { public: class PersistentCookieStore; - typedef CookieMonsterDelegate Delegate; // Terminology: // * The 'top level domain' (TLD) of an internet domain name is diff --git a/net/cookies/cookie_monster_store_test.cc b/net/cookies/cookie_monster_store_test.cc index bf422ed..4a2b3f0 100644 --- a/net/cookies/cookie_monster_store_test.cc +++ b/net/cookies/cookie_monster_store_test.cc @@ -93,7 +93,7 @@ MockCookieMonsterDelegate::MockCookieMonsterDelegate() { void MockCookieMonsterDelegate::OnCookieChanged( const CanonicalCookie& cookie, bool removed, - CookieMonster::Delegate::ChangeCause cause) { + CookieMonsterDelegate::ChangeCause cause) { CookieNotification notification(cookie, removed); changes_.push_back(notification); } |