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

Unified Diff: net/cert/signed_certificate_timestamp.cc

Issue 1841863002: Update monet. (Closed) Base URL: https://github.com/domokit/monet.git@master
Patch Set: Created 4 years, 9 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/signed_certificate_timestamp.h ('k') | net/cert/signed_certificate_timestamp_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/cert/signed_certificate_timestamp.cc
diff --git a/net/cert/signed_certificate_timestamp.cc b/net/cert/signed_certificate_timestamp.cc
index 9c0f57d54549f1077818095b19636b718b6540b5..bbd36dff642d031e5d99aa78694417cefe80f8a8 100644
--- a/net/cert/signed_certificate_timestamp.cc
+++ b/net/cert/signed_certificate_timestamp.cc
@@ -32,7 +32,7 @@ SignedCertificateTimestamp::SignedCertificateTimestamp() {}
SignedCertificateTimestamp::~SignedCertificateTimestamp() {}
-void SignedCertificateTimestamp::Persist(Pickle* pickle) {
+void SignedCertificateTimestamp::Persist(base::Pickle* pickle) {
CHECK(pickle->WriteInt(version));
CHECK(pickle->WriteString(log_id));
CHECK(pickle->WriteInt64(timestamp.ToInternalValue()));
@@ -46,7 +46,7 @@ void SignedCertificateTimestamp::Persist(Pickle* pickle) {
// static
scoped_refptr<SignedCertificateTimestamp>
-SignedCertificateTimestamp::CreateFromPickle(PickleIterator* iter) {
+SignedCertificateTimestamp::CreateFromPickle(base::PickleIterator* iter) {
int version;
int64 timestamp;
int hash_algorithm;
« no previous file with comments | « net/cert/signed_certificate_timestamp.h ('k') | net/cert/signed_certificate_timestamp_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698