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

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

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.mm
diff --git a/ios/net/cookies/cookie_store_ios.mm b/ios/net/cookies/cookie_store_ios.mm
index edb3bad1c6b2599672c07798dfbdd340217a7dab..a61c4b08a6ec53ed6aee1749c4a1ddbd461fbbc4 100644
--- a/ios/net/cookies/cookie_store_ios.mm
+++ b/ios/net/cookies/cookie_store_ios.mm
@@ -7,6 +7,8 @@
#import <Foundation/Foundation.h>
#include <stddef.h>
+#include <cstdint>
mmenke 2017/07/05 16:58:49 nit: This is included in the header, so not neede
Randy Smith (Not in Mondays) 2017/07/08 13:03:26 Done.
+
#include "base/bind.h"
#include "base/files/file_path.h"
#include "base/files/file_util.h"
@@ -861,7 +863,7 @@ void CookieStoreIOS::UpdateCachesAfterSet(SetCookiesCallback callback,
}
void CookieStoreIOS::UpdateCachesAfterDelete(DeleteCallback callback,
- int num_deleted) {
+ uint32_t num_deleted) {
DCHECK(thread_checker_.CalledOnValidThread());
UpdateCachesFromCookieMonster();
if (!callback.is_null())

Powered by Google App Engine
This is Rietveld 408576698