Index: content/child/multipart_response_delegate.h |
diff --git a/content/child/multipart_response_delegate.h b/content/child/multipart_response_delegate.h |
index aac659eb7562bce524a48e6b0f4272b00bde8de7..b76afdb4c2e9c26137b467be541e0ff65505ed96 100644 |
--- a/content/child/multipart_response_delegate.h |
+++ b/content/child/multipart_response_delegate.h |
@@ -51,7 +51,11 @@ |
#include <string> |
-#include "base/basictypes.h" |
+#include <stddef.h> |
+ |
+#include <stdint.h> |
+ |
+#include "base/macros.h" |
#include "content/common/content_export.h" |
#include "third_party/WebKit/public/platform/WebURLResponse.h" |
@@ -88,11 +92,10 @@ class CONTENT_EXPORT MultipartResponseDelegate { |
// Returns the lower and higher content ranges from an individual multipart |
// in a multipart response. |
// Returns true on success. |
- static bool ReadContentRanges( |
- const blink::WebURLResponse& response, |
- int64* content_range_lower_bound, |
- int64* content_range_upper_bound, |
- int64* content_range_instance_size); |
+ static bool ReadContentRanges(const blink::WebURLResponse& response, |
+ int64_t* content_range_lower_bound, |
+ int64_t* content_range_upper_bound, |
+ int64_t* content_range_instance_size); |
private: |
friend class MultipartResponseDelegateTester; // For unittests. |