| Index: content/child/multipart_response_delegate_unittest.cc
|
| diff --git a/content/child/multipart_response_delegate_unittest.cc b/content/child/multipart_response_delegate_unittest.cc
|
| index 38e8390b32b8a78ca3bdee2a6b4395b5d40b1812..a6076cff250cc2b9ac06c6e83e0eb4354915a12d 100644
|
| --- a/content/child/multipart_response_delegate_unittest.cc
|
| +++ b/content/child/multipart_response_delegate_unittest.cc
|
| @@ -4,8 +4,12 @@
|
|
|
| #include "content/child/multipart_response_delegate.h"
|
|
|
| +#include <stddef.h>
|
| +#include <stdint.h>
|
| +
|
| #include <vector>
|
|
|
| +#include "base/macros.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| #include "third_party/WebKit/public/platform/WebString.h"
|
| #include "third_party/WebKit/public/platform/WebURL.h"
|
| @@ -570,9 +574,9 @@ TEST(MultipartResponseTest, MultipartContentRangesTest) {
|
| response1.setHTTPHeaderField("Content-Range",
|
| "bytes 5000000000-5000000050/6000000000");
|
|
|
| - int64 content_range_lower_bound = 0;
|
| - int64 content_range_upper_bound = 0;
|
| - int64 content_range_instance_size = 0;
|
| + int64_t content_range_lower_bound = 0;
|
| + int64_t content_range_upper_bound = 0;
|
| + int64_t content_range_instance_size = 0;
|
|
|
| bool result = MultipartResponseDelegate::ReadContentRanges(
|
| response1, &content_range_lower_bound,
|
|
|