Chromium Code Reviews| Index: net/cookies/cookie_monster.h |
| diff --git a/net/cookies/cookie_monster.h b/net/cookies/cookie_monster.h |
| index a88f166b43d90971f436a56d22261e9cb6b3f0e5..004b3c423b76cbef86a5166f120eafb3cc377adb 100644 |
| --- a/net/cookies/cookie_monster.h |
| +++ b/net/cookies/cookie_monster.h |
| @@ -34,15 +34,12 @@ |
| #include "url/gurl.h" |
| namespace base { |
| -class Histogram; |
| class HistogramBase; |
| -class TimeTicks; |
| } // namespace base |
| namespace net { |
| class CookieMonsterDelegate; |
| -class ParsedCookie; |
| // The cookie monster is the system for storing and retrieving cookies. It has |
| // an in-memory list of all cookies, and synchronizes non-session cookies to an |
| @@ -140,7 +137,7 @@ class NET_EXPORT CookieMonster : public CookieStore { |
| // Only used during unit testing. |
| CookieMonster(PersistentCookieStore* store, |
| CookieMonsterDelegate* delegate, |
| - int last_access_threshold_milliseconds); |
| + const base::TimeDelta last_access_threshold); |
|
Ryan Sleevi
2016/05/19 00:10:28
nit: FWIW, you can drop the const as well, since y
|
| ~CookieMonster() override; |