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

Unified Diff: ios/chrome/browser/net/cookie_util.mm

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
Index: ios/chrome/browser/net/cookie_util.mm
diff --git a/ios/chrome/browser/net/cookie_util.mm b/ios/chrome/browser/net/cookie_util.mm
index 48a2187775c100e41acfce2cbb34e57af90aa622..2b513cd40301b963e9ac46087a8d07ff75bf4c7f 100644
--- a/ios/chrome/browser/net/cookie_util.mm
+++ b/ios/chrome/browser/net/cookie_util.mm
@@ -6,6 +6,7 @@
#import <Foundation/Foundation.h>
#include <stddef.h>
+#include <stdint.h>
#include <sys/sysctl.h>
#include "base/logging.h"
@@ -34,7 +35,7 @@ namespace {
NSString* const kLastCookieDeletionDate = @"LastCookieDeletionDate";
// Empty callback.
-void DoNothing(int n) {}
+void DoNothing(uint32_t n) {}
// Creates a SQLitePersistentCookieStore running on a background thread.
scoped_refptr<net::SQLitePersistentCookieStore> CreatePersistentCookieStore(
« no previous file with comments | « ios/chrome/browser/browsing_data/ios_chrome_browsing_data_remover.mm ('k') | ios/chrome/browser/ui/chrome_web_view_factory.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698