| Index: net/cookies/cookie_monster_store_test.cc
|
| diff --git a/net/cookies/cookie_monster_store_test.cc b/net/cookies/cookie_monster_store_test.cc
|
| index 3a3697340120bfbc78f48ddc0e7edbefbd3e0df8..8c004ef614009d1927849bb0f542c0808ca3b8c0 100644
|
| --- a/net/cookies/cookie_monster_store_test.cc
|
| +++ b/net/cookies/cookie_monster_store_test.cc
|
| @@ -168,21 +168,21 @@ void MockSimplePersistentCookieStore::LoadCookiesForKey(
|
| }
|
|
|
| void MockSimplePersistentCookieStore::AddCookie(const CanonicalCookie& cookie) {
|
| - int64 creation_time = cookie.CreationDate().ToInternalValue();
|
| + int64_t creation_time = cookie.CreationDate().ToInternalValue();
|
| EXPECT_TRUE(cookies_.find(creation_time) == cookies_.end());
|
| cookies_[creation_time] = cookie;
|
| }
|
|
|
| void MockSimplePersistentCookieStore::UpdateCookieAccessTime(
|
| const CanonicalCookie& cookie) {
|
| - int64 creation_time = cookie.CreationDate().ToInternalValue();
|
| + int64_t creation_time = cookie.CreationDate().ToInternalValue();
|
| ASSERT_TRUE(cookies_.find(creation_time) != cookies_.end());
|
| cookies_[creation_time].SetLastAccessDate(base::Time::Now());
|
| }
|
|
|
| void MockSimplePersistentCookieStore::DeleteCookie(
|
| const CanonicalCookie& cookie) {
|
| - int64 creation_time = cookie.CreationDate().ToInternalValue();
|
| + int64_t creation_time = cookie.CreationDate().ToInternalValue();
|
| CanonicalCookieMap::iterator it = cookies_.find(creation_time);
|
| ASSERT_TRUE(it != cookies_.end());
|
| cookies_.erase(it);
|
|
|