summaryrefslogtreecommitdiffstats
path: root/google_apis/drive/test_util.cc
diff options
context:
space:
mode:
Diffstat (limited to 'google_apis/drive/test_util.cc')
-rw-r--r--google_apis/drive/test_util.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/google_apis/drive/test_util.cc b/google_apis/drive/test_util.cc
index e588519..64216af 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));
}