| Index: net/http/http_util_unittest.cc
 | 
| diff --git a/net/http/http_util_unittest.cc b/net/http/http_util_unittest.cc
 | 
| index a5c984db66b1f5e46798036e8c1ac3758fab9f81..90750e999c6e24596178fe33f288873c788288e2 100644
 | 
| --- a/net/http/http_util_unittest.cc
 | 
| +++ b/net/http/http_util_unittest.cc
 | 
| @@ -4,7 +4,6 @@
 | 
|  
 | 
|  #include <algorithm>
 | 
|  
 | 
| -#include "base/basictypes.h"
 | 
|  #include "base/strings/string_util.h"
 | 
|  #include "net/http/http_util.h"
 | 
|  #include "testing/gtest/include/gtest/gtest.h"
 | 
| @@ -766,9 +765,9 @@ TEST(HttpUtilTest, ParseRanges) {
 | 
|      bool expected_return_value;
 | 
|      size_t expected_ranges_size;
 | 
|      const struct {
 | 
| -      int64 expected_first_byte_position;
 | 
| -      int64 expected_last_byte_position;
 | 
| -      int64 expected_suffix_length;
 | 
| +      int64_t expected_first_byte_position;
 | 
| +      int64_t expected_last_byte_position;
 | 
| +      int64_t expected_suffix_length;
 | 
|      } expected_ranges[10];
 | 
|    } tests[] = {
 | 
|      { "Range: bytes=0-10",
 | 
| 
 |