| Index: net/url_request/url_request_http_job.h
 | 
| diff --git a/net/url_request/url_request_http_job.h b/net/url_request/url_request_http_job.h
 | 
| index d39d739daa5172bcacc351cef59329ce05f1c7e4..79b4aa9dfc026f8f5e2e6aa04b3247631a845837 100644
 | 
| --- a/net/url_request/url_request_http_job.h
 | 
| +++ b/net/url_request/url_request_http_job.h
 | 
| @@ -5,12 +5,14 @@
 | 
|  #ifndef NET_URL_REQUEST_URL_REQUEST_HTTP_JOB_H_
 | 
|  #define NET_URL_REQUEST_URL_REQUEST_HTTP_JOB_H_
 | 
|  
 | 
| +#include <stddef.h>
 | 
|  #include <stdint.h>
 | 
|  
 | 
|  #include <string>
 | 
|  #include <vector>
 | 
|  
 | 
|  #include "base/compiler_specific.h"
 | 
| +#include "base/macros.h"
 | 
|  #include "base/memory/scoped_ptr.h"
 | 
|  #include "base/memory/weak_ptr.h"
 | 
|  #include "base/time/time.h"
 | 
| @@ -135,7 +137,7 @@ class NET_EXPORT_PRIVATE URLRequestHttpJob : public URLRequestJob {
 | 
|    int ReadRawData(IOBuffer* buf, int buf_size) override;
 | 
|    void StopCaching() override;
 | 
|    bool GetFullRequestHeaders(HttpRequestHeaders* headers) const override;
 | 
| -  int64 GetTotalReceivedBytes() const override;
 | 
| +  int64_t GetTotalReceivedBytes() const override;
 | 
|    int64_t GetTotalSentBytes() const override;
 | 
|    void DoneReading() override;
 | 
|    void DoneReadingRedirectResponse() override;
 | 
| @@ -238,7 +240,7 @@ class NET_EXPORT_PRIVATE URLRequestHttpJob : public URLRequestJob {
 | 
|  
 | 
|    // The number of bytes that have been accounted for in packets (where some of
 | 
|    // those packets may possibly have had their time of arrival recorded).
 | 
| -  int64 bytes_observed_in_packets_;
 | 
| +  int64_t bytes_observed_in_packets_;
 | 
|  
 | 
|    // The request time may not be available when we are being destroyed, so we
 | 
|    // snapshot it early on.
 | 
| 
 |