Index: storage/browser/blob/scoped_file.cc |
diff --git a/storage/browser/blob/scoped_file.cc b/storage/browser/blob/scoped_file.cc |
index cdf4cb88550f61d1166b6bb50b39b4dded597504..825dc041198a1594751febfab4e28665c1f6f610 100644 |
--- a/storage/browser/blob/scoped_file.cc |
+++ b/storage/browser/blob/scoped_file.cc |
@@ -8,8 +8,8 @@ |
#include "base/callback.h" |
#include "base/files/file_util.h" |
#include "base/location.h" |
-#include "base/message_loop/message_loop_proxy.h" |
#include "base/task_runner.h" |
+#include "base/thread_task_runner_handle.h" |
namespace storage { |
@@ -41,7 +41,7 @@ void ScopedFile::AddScopeOutCallback( |
const ScopeOutCallback& callback, |
base::TaskRunner* callback_runner) { |
if (!callback_runner) |
- callback_runner = base::MessageLoopProxy::current().get(); |
+ callback_runner = base::ThreadTaskRunnerHandle::Get().get(); |
scope_out_callbacks_.push_back(std::make_pair(callback, callback_runner)); |
} |