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

Unified Diff: ios/chrome/browser/browsing_data/browsing_data_removal_controller.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/browsing_data/browsing_data_removal_controller.mm
diff --git a/ios/chrome/browser/browsing_data/browsing_data_removal_controller.mm b/ios/chrome/browser/browsing_data/browsing_data_removal_controller.mm
index 115c6ff39ca2c9bd5bf5243520391a27c5505b91..ba093170e953e59a20d78f6f1f362576055ccd29 100644
--- a/ios/chrome/browser/browsing_data/browsing_data_removal_controller.mm
+++ b/ios/chrome/browser/browsing_data/browsing_data_removal_controller.mm
@@ -6,6 +6,8 @@
#import <WebKit/WebKit.h>
+#include <stdint.h>
+
#include <memory>
#include "base/bind.h"
@@ -39,7 +41,7 @@
namespace {
// Empty callback used by DeleteAllCreatedBetweenAsync below.
-void DoNothing(int n) {}
+void DoNothing(uint32_t n) {}
}
@interface BrowsingDataRemovalController ()
« no previous file with comments | « content/browser/storage_partition_impl.cc ('k') | ios/chrome/browser/browsing_data/ios_chrome_browsing_data_remover.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698