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

Unified Diff: net/http/http_response_info.cc

Issue 115013004: Certificate Transparency: Cleanup: Correct the naming of the struct fields. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 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 | « content/browser/loader/resource_loader.cc ('k') | net/ssl/signed_certificate_timestamp_and_status.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/http_response_info.cc
diff --git a/net/http/http_response_info.cc b/net/http/http_response_info.cc
index 4f9e014cfb2ec8afbabf34aa359039942c6c0d4c..aeb9f218d7ec51cd16735311430abb38f20eb49c 100644
--- a/net/http/http_response_info.cc
+++ b/net/http/http_response_info.cc
@@ -340,8 +340,8 @@ void HttpResponseInfo::Persist(Pickle* pickle,
for (SignedCertificateTimestampAndStatusList::const_iterator it =
ssl_info.signed_certificate_timestamps.begin(); it !=
ssl_info.signed_certificate_timestamps.end(); ++it) {
- it->sct_->Persist(pickle);
- pickle->WriteUInt16(it->status_);
+ it->sct->Persist(pickle);
+ pickle->WriteUInt16(it->status);
}
}
}
« no previous file with comments | « content/browser/loader/resource_loader.cc ('k') | net/ssl/signed_certificate_timestamp_and_status.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698