| Index: content/browser/storage_partition_impl.cc
|
| diff --git a/content/browser/storage_partition_impl.cc b/content/browser/storage_partition_impl.cc
|
| index 7e6db8187d43d44fb23bcf286de51337605d7146..d997eef09909c4d0a7f6477cb062f745a9a7470b 100644
|
| --- a/content/browser/storage_partition_impl.cc
|
| +++ b/content/browser/storage_partition_impl.cc
|
| @@ -6,6 +6,7 @@
|
|
|
| #include <stddef.h>
|
|
|
| +#include <cstdint>
|
| #include <set>
|
| #include <vector>
|
|
|
| @@ -63,7 +64,7 @@ bool DoesCookieMatchHost(const std::string& host,
|
| return cookie.IsHostCookie() && cookie.IsDomainMatch(host);
|
| }
|
|
|
| -void OnClearedCookies(const base::Closure& callback, int num_deleted) {
|
| +void OnClearedCookies(const base::Closure& callback, uint32_t num_deleted) {
|
| // The final callback needs to happen from UI thread.
|
| if (!BrowserThread::CurrentlyOn(BrowserThread::UI)) {
|
| BrowserThread::PostTask(
|
|
|