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

Unified Diff: ios/chrome/browser/ui/chrome_web_view_factory.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
« no previous file with comments | « ios/chrome/browser/net/cookie_util.mm ('k') | ios/net/cookies/cookie_store_ios.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/chrome/browser/ui/chrome_web_view_factory.mm
diff --git a/ios/chrome/browser/ui/chrome_web_view_factory.mm b/ios/chrome/browser/ui/chrome_web_view_factory.mm
index c53d324340167e8b32b10ca07896fc8788bb2d54..cbd7be98498a22bea5baead32b968947a60259d3 100644
--- a/ios/chrome/browser/ui/chrome_web_view_factory.mm
+++ b/ios/chrome/browser/ui/chrome_web_view_factory.mm
@@ -4,6 +4,8 @@
#import "ios/chrome/browser/ui/chrome_web_view_factory.h"
+#include <stdint.h>
+
#include "base/base64.h"
#include "base/logging.h"
#include "ios/chrome/browser/browser_state/chrome_browser_state.h"
@@ -52,7 +54,7 @@ ios::ChromeBrowserState* g_external_browser_state = nullptr;
scoped_refptr<web::RequestTrackerImpl> g_request_tracker;
// Empty callback used by ClearCookiesOnIOThread below.
-void DoNothing(int n) {}
+void DoNothing(uint32_t n) {}
// Clears the cookies.
void ClearCookiesOnIOThread(net::URLRequestContextGetter* context_getter,
« no previous file with comments | « ios/chrome/browser/net/cookie_util.mm ('k') | ios/net/cookies/cookie_store_ios.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698