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..599f708b2199478ec1b4bd29dd1f557e449f16f5 100644 |
| --- a/net/cookies/cookie_monster.h |
| +++ b/net/cookies/cookie_monster.h |
| @@ -140,7 +140,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 Hamilton
2016/05/18 22:45:20
nit: base::TimeDelta is (under the covers) an int6
Ryan Sleevi
2016/05/18 23:07:07
The fact that it had to be clarified "(under the c
Scott Hess - ex-Googler
2016/05/18 23:14:29
Done.
Scott Hess - ex-Googler
2016/05/18 23:14:29
My of const& was _mostly_ because I assumed that t
Ryan Hamilton
2016/05/18 23:46:16
Hm. I'm surprised to hear you say this, because in
|
| ~CookieMonster() override; |