| Index: chrome/browser/chromeos/extensions/file_manager/job_event_router.cc
 | 
| diff --git a/chrome/browser/chromeos/extensions/file_manager/job_event_router.cc b/chrome/browser/chromeos/extensions/file_manager/job_event_router.cc
 | 
| index 3d6bb30f986b5127626ec23211d29e30ef297293..3ba73eb0fd9c8db4943a7b5fee11729d2eb42d83 100644
 | 
| --- a/chrome/browser/chromeos/extensions/file_manager/job_event_router.cc
 | 
| +++ b/chrome/browser/chromeos/extensions/file_manager/job_event_router.cc
 | 
| @@ -81,8 +81,8 @@ void JobEventRouter::OnJobDone(const drive::JobInfo& job_info,
 | 
|  }
 | 
|  
 | 
|  void JobEventRouter::UpdateBytes(const drive::JobInfo& job_info) {
 | 
| -  int64 last_completed_bytes = 0;
 | 
| -  int64 last_total_bytes = 0;
 | 
| +  int64_t last_completed_bytes = 0;
 | 
| +  int64_t last_total_bytes = 0;
 | 
|    if (drive_jobs_.count(job_info.job_id)) {
 | 
|      last_completed_bytes = drive_jobs_[job_info.job_id]->num_completed_bytes;
 | 
|      last_total_bytes = drive_jobs_[job_info.job_id]->num_total_bytes;
 | 
| @@ -130,9 +130,9 @@ void JobEventRouter::DispatchFileTransfersUpdateEventToExtension(
 | 
|      const std::string& extension_id,
 | 
|      const drive::JobInfo& job_info,
 | 
|      const file_manager_private::TransferState& state,
 | 
| -    const int64 num_total_jobs,
 | 
| -    const int64 num_completed_bytes,
 | 
| -    const int64 num_total_bytes) {
 | 
| +    const int64_t num_total_jobs,
 | 
| +    const int64_t num_completed_bytes,
 | 
| +    const int64_t num_total_bytes) {
 | 
|    file_manager_private::FileTransferStatus status;
 | 
|  
 | 
|    const GURL url =
 | 
| 
 |