| Index: chrome/browser/sync_file_system/drive_backend_v1/api_util.cc
|
| diff --git a/chrome/browser/sync_file_system/drive_backend_v1/api_util.cc b/chrome/browser/sync_file_system/drive_backend_v1/api_util.cc
|
| index 0150cc9c3b1ada3cd173529d5b60603ac73baff0..1d118c85f389a7b562fdc2a629b26e1a21f0a327 100644
|
| --- a/chrome/browser/sync_file_system/drive_backend_v1/api_util.cc
|
| +++ b/chrome/browser/sync_file_system/drive_backend_v1/api_util.cc
|
| @@ -13,6 +13,7 @@
|
| #include "base/sequenced_task_runner.h"
|
| #include "base/strings/string_util.h"
|
| #include "base/strings/utf_string_conversions.h"
|
| +#include "base/thread_task_runner_handle.h"
|
| #include "base/threading/sequenced_worker_pool.h"
|
| #include "base/values.h"
|
| #include "chrome/browser/drive/drive_api_service.h"
|
| @@ -151,7 +152,7 @@ bool CreateTemporaryFile(const base::FilePath& dir_path,
|
| *temp_file =
|
| webkit_blob::ScopedFile(temp_file_path,
|
| webkit_blob::ScopedFile::DELETE_ON_SCOPE_OUT,
|
| - base::MessageLoopProxy::current().get());
|
| + base::ThreadTaskRunnerHandle::Get().get());
|
| return success;
|
| }
|
|
|
|
|