Index: content/browser/storage_partition_impl_map.cc |
diff --git a/content/browser/storage_partition_impl_map.cc b/content/browser/storage_partition_impl_map.cc |
index 7ba28d7c664ec43da00aa270fc85a635338dc912..8b99d0428c766d558ca97edbb895433ee10157be 100644 |
--- a/content/browser/storage_partition_impl_map.cc |
+++ b/content/browser/storage_partition_impl_map.cc |
@@ -9,10 +9,13 @@ |
#include "base/files/file_enumerator.h" |
#include "base/files/file_path.h" |
#include "base/files/file_util.h" |
+#include "base/location.h" |
+#include "base/single_thread_task_runner.h" |
#include "base/stl_util.h" |
#include "base/strings/string_number_conversions.h" |
#include "base/strings/string_util.h" |
#include "base/strings/stringprintf.h" |
+#include "base/thread_task_runner_handle.h" |
#include "base/threading/sequenced_worker_pool.h" |
#include "content/browser/appcache/appcache_interceptor.h" |
#include "content/browser/appcache/chrome_appcache_service.h" |
@@ -521,7 +524,7 @@ void StoragePartitionImplMap::AsyncObliterate( |
FROM_HERE, |
base::Bind(&BlockingObliteratePath, browser_context_->GetPath(), |
domain_root, paths_to_keep, |
- base::MessageLoopProxy::current(), on_gc_required)); |
+ base::ThreadTaskRunnerHandle::Get(), on_gc_required)); |
} |
void StoragePartitionImplMap::GarbageCollect( |