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

Unified Diff: chrome/browser/extensions/api/system_info/system_info_provider.cc

Issue 501263002: Remove implicit conversions from scoped_refptr to T* in chrome/browser/extensions/api/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Just in case Created 6 years, 4 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/extensions/api/system_info/system_info_provider.cc
diff --git a/chrome/browser/extensions/api/system_info/system_info_provider.cc b/chrome/browser/extensions/api/system_info/system_info_provider.cc
index 3ecccb4a60b3e958a419c67a0783493462bd1ed5..f1a89561718dbf7ef35ad1126cc1a400eaa6b5e7 100644
--- a/chrome/browser/extensions/api/system_info/system_info_provider.cc
+++ b/chrome/browser/extensions/api/system_info/system_info_provider.cc
@@ -59,7 +59,7 @@ void SystemInfoProvider::StartQueryInfoPostInitialization() {
// Post the custom query info task to blocking pool for information querying
// and reply with OnQueryCompleted.
base::PostTaskAndReplyWithResult(
- worker_pool_,
+ worker_pool_.get(),
FROM_HERE,
base::Bind(&SystemInfoProvider::QueryInfo, this),
base::Bind(&SystemInfoProvider::OnQueryCompleted, this));

Powered by Google App Engine
This is Rietveld 408576698