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

Unified Diff: chrome/browser/chromeos/policy/policy_cert_verifier.cc

Issue 549313004: Remove implicit conversions from scoped_refptr to T* in c/b/chromeos/policy (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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/chromeos/policy/policy_cert_verifier.cc
diff --git a/chrome/browser/chromeos/policy/policy_cert_verifier.cc b/chrome/browser/chromeos/policy/policy_cert_verifier.cc
index 1c8d5f3c79663d65884e98f198f6c8e49a9be910..524ca94774aafd68f88591196600a375133a53ac 100644
--- a/chrome/browser/chromeos/policy/policy_cert_verifier.cc
+++ b/chrome/browser/chromeos/policy/policy_cert_verifier.cc
@@ -57,7 +57,7 @@ void PolicyCertVerifier::InitializeOnIOThread(
<< "Additional trust anchors not supported on the current platform!";
}
net::MultiThreadedCertVerifier* verifier =
- new net::MultiThreadedCertVerifier(verify_proc);
+ new net::MultiThreadedCertVerifier(verify_proc.get());
verifier->SetCertTrustAnchorProvider(this);
delegate_.reset(verifier);
}

Powered by Google App Engine
This is Rietveld 408576698