| Index: chrome/browser/safe_browsing/two_phase_uploader.h
|
| diff --git a/chrome/browser/safe_browsing/two_phase_uploader.h b/chrome/browser/safe_browsing/two_phase_uploader.h
|
| index 18d6b41b70040495e6174d4e69d705be331cb9c8..5c44bc7c7db80d8fd6c1854eaf3598a7d781b99e 100644
|
| --- a/chrome/browser/safe_browsing/two_phase_uploader.h
|
| +++ b/chrome/browser/safe_browsing/two_phase_uploader.h
|
| @@ -5,6 +5,8 @@
|
| #ifndef CHROME_BROWSER_SAFE_BROWSING_TWO_PHASE_UPLOADER_H_
|
| #define CHROME_BROWSER_SAFE_BROWSING_TWO_PHASE_UPLOADER_H_
|
|
|
| +#include <stdint.h>
|
| +
|
| #include <string>
|
|
|
| #include "base/callback.h"
|
| @@ -39,7 +41,7 @@ class TwoPhaseUploader : public base::NonThreadSafe {
|
| UPLOAD_FILE,
|
| STATE_SUCCESS,
|
| };
|
| - typedef base::Callback<void(int64 sent, int64 total)> ProgressCallback;
|
| + typedef base::Callback<void(int64_t sent, int64_t total)> ProgressCallback;
|
| typedef base::Callback<void(State state,
|
| int net_error,
|
| int response_code,
|
|
|