| Index: chrome/browser/chromeos/drive/file_system/update_operation.cc
|
| diff --git a/chrome/browser/chromeos/drive/file_system/update_operation.cc b/chrome/browser/chromeos/drive/file_system/update_operation.cc
|
| index cf917e45c13d0a2c1f936725863df9b860b11ad2..af789ad2d060313386f0fe91e1cef7330a2d34bc 100644
|
| --- a/chrome/browser/chromeos/drive/file_system/update_operation.cc
|
| +++ b/chrome/browser/chromeos/drive/file_system/update_operation.cc
|
| @@ -98,7 +98,7 @@ void UpdateOperation::UpdateFileByResourceId(
|
| base::FilePath* drive_file_path = new base::FilePath;
|
| base::FilePath* cache_file_path = new base::FilePath;
|
| base::PostTaskAndReplyWithResult(
|
| - blocking_task_runner_,
|
| + blocking_task_runner_.get(),
|
| FROM_HERE,
|
| base::Bind(&GetFileLocalState,
|
| metadata_,
|
| @@ -158,7 +158,7 @@ void UpdateOperation::UpdateFileAfterUpload(
|
|
|
| base::FilePath* drive_file_path = new base::FilePath;
|
| base::PostTaskAndReplyWithResult(
|
| - blocking_task_runner_,
|
| + blocking_task_runner_.get(),
|
| FROM_HERE,
|
| base::Bind(&UpdateFileLocalState,
|
| metadata_,
|
|
|