| Index: content/browser/devtools/protocol/network_handler.cc
|
| diff --git a/content/browser/devtools/protocol/network_handler.cc b/content/browser/devtools/protocol/network_handler.cc
|
| index 5c2c7238475c39f1a4c801485b44071ebf97c2ac..0466955bd7b0c9ab580d4e0d8dfbe862fe224512 100644
|
| --- a/content/browser/devtools/protocol/network_handler.cc
|
| +++ b/content/browser/devtools/protocol/network_handler.cc
|
| @@ -5,6 +5,7 @@
|
| #include "content/browser/devtools/protocol/network_handler.h"
|
|
|
| #include <stddef.h>
|
| +#include <stdint.h>
|
|
|
| #include "base/barrier_closure.h"
|
| #include "base/base64.h"
|
| @@ -190,7 +191,7 @@ class CookieRetriever : public base::RefCountedThreadSafe<CookieRetriever> {
|
| };
|
|
|
| void ClearedCookiesOnIO(std::unique_ptr<ClearBrowserCookiesCallback> callback,
|
| - int num_deleted) {
|
| + uint32_t num_deleted) {
|
| DCHECK_CURRENTLY_ON(BrowserThread::IO);
|
| BrowserThread::PostTask(BrowserThread::UI, FROM_HERE,
|
| base::Bind(&ClearBrowserCookiesCallback::sendSuccess,
|
|
|