Index: chrome/browser/performance_monitor/performance_monitor.cc |
diff --git a/chrome/browser/performance_monitor/performance_monitor.cc b/chrome/browser/performance_monitor/performance_monitor.cc |
index a96e5b1c8343e2bd99439e858a4a043023400b9a..445d113de0a42904fa0078d168d33e1e8a6d197f 100644 |
--- a/chrome/browser/performance_monitor/performance_monitor.cc |
+++ b/chrome/browser/performance_monitor/performance_monitor.cc |
@@ -51,7 +51,7 @@ PerformanceMonitor* PerformanceMonitor::GetInstance() { |
} |
void PerformanceMonitor::Start() { |
- BrowserThread::PostBlockingPoolTaskAndReply( |
+ util::PostTaskToDatabaseThreadAndReply( |
FROM_HERE, |
base::Bind(&PerformanceMonitor::InitOnBackgroundThread, |
base::Unretained(this)), |
@@ -81,6 +81,7 @@ void PerformanceMonitor::FinishInit() { |
// to the background thread, and do not rely upon a reply from the background |
// thread; this is necessary for this notification to be valid. |
util::PostTaskToDatabaseThreadAndReply( |
+ FROM_HERE, |
base::Bind(&base::DoNothing), |
base::Bind(&PerformanceMonitor::NotifyInitialized, |
base::Unretained(this))); |