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

Unified Diff: android_webview/browser/net/aw_cookie_store_wrapper_unittest.cc

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: android_webview/browser/net/aw_cookie_store_wrapper_unittest.cc
diff --git a/android_webview/browser/net/aw_cookie_store_wrapper_unittest.cc b/android_webview/browser/net/aw_cookie_store_wrapper_unittest.cc
index d856d24b0048dde1304a960ffeea8d0a8ec68570..a80d03b907baba3be8405a9c810a715016ef792d 100644
--- a/android_webview/browser/net/aw_cookie_store_wrapper_unittest.cc
+++ b/android_webview/browser/net/aw_cookie_store_wrapper_unittest.cc
@@ -4,6 +4,8 @@
#include "android_webview/browser/net/aw_cookie_store_wrapper.h"
+#include <stdint.h>
+
#include <memory>
#include "net/cookies/cookie_store.h"
@@ -20,9 +22,9 @@ struct AwCookieStoreWrapperTestTraits {
// Android Webview can run multiple tests without restarting the binary,
// so have to delete any cookies the global store may have from an earlier
// test.
- net::ResultSavingCookieCallback<int> callback;
+ net::ResultSavingCookieCallback<uint32_t> callback;
cookie_store->DeleteAllAsync(
- base::Bind(&net::ResultSavingCookieCallback<int>::Run,
+ base::Bind(&net::ResultSavingCookieCallback<uint32_t>::Run,
base::Unretained(&callback)));
callback.WaitUntilDone();

Powered by Google App Engine
This is Rietveld 408576698