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

Unified Diff: net/cert/cert_verifier.cc

Issue 1545233002: Convert Pass()→std::move() in //net (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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
« no previous file with comments | « net/cert/cert_policy_enforcer.cc ('k') | net/cert/ct_log_response_parser_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/cert/cert_verifier.cc
diff --git a/net/cert/cert_verifier.cc b/net/cert/cert_verifier.cc
index 3cd4a78a34186b910638d0e33bad78eb2ca47e5a..79bd0ef6bec35ab2bd0ac84ce5d00127dfa52dcf 100644
--- a/net/cert/cert_verifier.cc
+++ b/net/cert/cert_verifier.cc
@@ -25,8 +25,7 @@ scoped_ptr<CertVerifier> CertVerifier::CreateDefault() {
return scoped_ptr<CertVerifier>();
#else
return make_scoped_ptr(
- new MultiThreadedCertVerifier(CertVerifyProc::CreateDefault()))
- .Pass();
+ new MultiThreadedCertVerifier(CertVerifyProc::CreateDefault()));
#endif
}
« no previous file with comments | « net/cert/cert_policy_enforcer.cc ('k') | net/cert/ct_log_response_parser_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698