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

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

Issue 2971733002: Change CookieStore::DeleteCallback to take uint32_t. (Closed)
Patch Set: Fixed Android webview compilation errors. 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
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.

Powered by Google App Engine
This is Rietveld 408576698