Chromium Code Reviews| Index: ios/net/cookies/cookie_store_ios.h |
| diff --git a/ios/net/cookies/cookie_store_ios.h b/ios/net/cookies/cookie_store_ios.h |
| index 04a37f1913c7235d00a028e56dec823a9f580133..c26caeb6ec1d9bfda7b0485a6b994bd4b84f3b07 100644 |
| --- a/ios/net/cookies/cookie_store_ios.h |
| +++ b/ios/net/cookies/cookie_store_ios.h |
| @@ -5,6 +5,7 @@ |
| #ifndef IOS_NET_COOKIES_COOKIE_STORE_IOS_H_ |
| #define IOS_NET_COOKIES_COOKIE_STORE_IOS_H_ |
| +#include <cstdint> |
|
mmenke
2017/07/05 16:58:49
cstdint? stdint.h is what we normally included fo
Randy Smith (Not in Mondays)
2017/07/08 13:03:26
Done.
|
| #include <map> |
| #include <memory> |
| #include <string> |
| @@ -253,7 +254,7 @@ class CookieStoreIOS : public net::CookieStore, |
| // calling the provided callback. |
| void UpdateCachesAfterSet(SetCookiesCallback callback, bool success); |
| - void UpdateCachesAfterDelete(DeleteCallback callback, int num_deleted); |
| + void UpdateCachesAfterDelete(DeleteCallback callback, uint32_t num_deleted); |
| void UpdateCachesAfterClosure(base::OnceClosure callback); |
| // Takes an NSArray of NSHTTPCookies as returns a net::CookieList. |