Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(231)

Unified Diff: ios/net/cookies/cookie_store_ios.h

Issue 2971733002: Change CookieStore::DeleteCallback to take uint32_t. (Closed)
Patch Set: Got rid of rest of <cstdint> stuff. Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ios/chrome/browser/ui/chrome_web_view_factory.mm ('k') | ios/net/cookies/cookie_store_ios.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..3877586e5ebbd4eccc08f43ee768f1639edc4bae 100644
--- a/ios/net/cookies/cookie_store_ios.h
+++ b/ios/net/cookies/cookie_store_ios.h
@@ -5,6 +5,8 @@
#ifndef IOS_NET_COOKIES_COOKIE_STORE_IOS_H_
#define IOS_NET_COOKIES_COOKIE_STORE_IOS_H_
+#include <stdint.h>
+
#include <map>
#include <memory>
#include <string>
@@ -253,7 +255,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.
« no previous file with comments | « ios/chrome/browser/ui/chrome_web_view_factory.mm ('k') | ios/net/cookies/cookie_store_ios.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698