Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4629)

Unified Diff: chrome/browser/browsing_data/browsing_data_quota_helper.cc

Issue 1117583003: [chrome/browser/browsing_data] Replace MessageLoopProxy usage with ThreadTaskRunnerHandle (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed nit Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/browsing_data/browsing_data_quota_helper.cc
diff --git a/chrome/browser/browsing_data/browsing_data_quota_helper.cc b/chrome/browser/browsing_data/browsing_data_quota_helper.cc
index 18939fbf6e18146fe2601259e1d4da302a67d750..a12281ebd236dcbe9d21e48238f078e49019dff2 100644
--- a/chrome/browser/browsing_data/browsing_data_quota_helper.cc
+++ b/chrome/browser/browsing_data/browsing_data_quota_helper.cc
@@ -5,6 +5,7 @@
#include "chrome/browser/browsing_data/browsing_data_quota_helper.h"
#include "base/location.h"
+#include "base/single_thread_task_runner.h"
BrowsingDataQuotaHelper::QuotaInfo::QuotaInfo()
: temporary_usage(0),
@@ -35,7 +36,7 @@ void BrowsingDataQuotaHelperDeleter::Destruct(
}
BrowsingDataQuotaHelper::BrowsingDataQuotaHelper(
- base::MessageLoopProxy* io_thread)
+ base::SingleThreadTaskRunner* io_thread)
: io_thread_(io_thread) {
}

Powered by Google App Engine
This is Rietveld 408576698