| Index: google_apis/drive/test_util.cc
|
| diff --git a/google_apis/drive/test_util.cc b/google_apis/drive/test_util.cc
|
| index e5885195a60ff6679b8ce5f3ec37a7dd4f03cb81..64216af6c3baaa8a757e9c9a55aefaf6af6d06e5 100644
|
| --- a/google_apis/drive/test_util.cc
|
| +++ b/google_apis/drive/test_util.cc
|
| @@ -122,9 +122,9 @@ scoped_ptr<net::test_server::HttpResponse> HandleDownloadFileRequest(
|
| }
|
|
|
| bool ParseContentRangeHeader(const std::string& value,
|
| - int64* start_position,
|
| - int64* end_position,
|
| - int64* length) {
|
| + int64_t* start_position,
|
| + int64_t* end_position,
|
| + int64_t* length) {
|
| DCHECK(start_position);
|
| DCHECK(end_position);
|
| DCHECK(length);
|
| @@ -151,8 +151,8 @@ bool ParseContentRangeHeader(const std::string& value,
|
| }
|
|
|
| void AppendProgressCallbackResult(std::vector<ProgressInfo>* progress_values,
|
| - int64 progress,
|
| - int64 total) {
|
| + int64_t progress,
|
| + int64_t total) {
|
| progress_values->push_back(ProgressInfo(progress, total));
|
| }
|
|
|
|
|