| Index: net/http/http_stream_parser.h
|
| diff --git a/net/http/http_stream_parser.h b/net/http/http_stream_parser.h
|
| index f8700c472f5e664552777f245583cd40a5bea230..d51cb9188bb70d3173c29cefd0b15a02c30f9058 100644
|
| --- a/net/http/http_stream_parser.h
|
| +++ b/net/http/http_stream_parser.h
|
| @@ -5,11 +5,12 @@
|
| #ifndef NET_HTTP_HTTP_STREAM_PARSER_H_
|
| #define NET_HTTP_HTTP_STREAM_PARSER_H_
|
|
|
| +#include <stddef.h>
|
| #include <stdint.h>
|
|
|
| #include <string>
|
|
|
| -#include "base/basictypes.h"
|
| +#include "base/macros.h"
|
| #include "base/memory/ref_counted.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "base/memory/weak_ptr.h"
|
| @@ -226,10 +227,10 @@ class NET_EXPORT_PRIVATE HttpStreamParser {
|
| // Indicates the content length. If this value is less than zero
|
| // (and chunked_decoder_ is null), then we must read until the server
|
| // closes the connection.
|
| - int64 response_body_length_;
|
| + int64_t response_body_length_;
|
|
|
| // Keep track of the number of response body bytes read so far.
|
| - int64 response_body_read_;
|
| + int64_t response_body_read_;
|
|
|
| // Helper if the data is chunked.
|
| scoped_ptr<HttpChunkedDecoder> chunked_decoder_;
|
|
|