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

Unified Diff: net/cert/crl_set_storage.cc

Issue 503163002: Remove implicit conversions from scoped_refptr to T* in net/cert/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
« no previous file with comments | « net/cert/cert_verify_proc_unittest.cc ('k') | net/cert/crl_set_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/cert/crl_set_storage.cc
diff --git a/net/cert/crl_set_storage.cc b/net/cert/crl_set_storage.cc
index 0288bcc529194be403a24bb635182e244d62551b..1b11d78e02495da6abe24ba773939fa09b1118cf 100644
--- a/net/cert/crl_set_storage.cc
+++ b/net/cert/crl_set_storage.cc
@@ -350,7 +350,7 @@ bool CRLSetStorage::Parse(base::StringPiece data,
crl_set->crls_index_by_issuer_[back_pair->first] = crl_index;
}
- if (!CopyBlockedSPKIsFromHeader(crl_set, header_dict.get()))
+ if (!CopyBlockedSPKIsFromHeader(crl_set.get(), header_dict.get()))
return false;
*out_crl_set = crl_set;
@@ -398,7 +398,7 @@ bool CRLSetStorage::ApplyDelta(const CRLSet* in_crl_set,
crl_set->sequence_ = static_cast<uint32>(sequence);
crl_set->not_after_ = static_cast<uint64>(not_after);
- if (!CopyBlockedSPKIsFromHeader(crl_set, header_dict.get()))
+ if (!CopyBlockedSPKIsFromHeader(crl_set.get(), header_dict.get()))
return false;
std::vector<uint8> crl_changes;
« no previous file with comments | « net/cert/cert_verify_proc_unittest.cc ('k') | net/cert/crl_set_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698