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

Unified Diff: net/cert/ct_objects_extractor_openssl.cc

Issue 1223983002: Move WriteInto to base namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 5 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/crl_set_storage.cc ('k') | net/cert/jwk_serializer_openssl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/cert/ct_objects_extractor_openssl.cc
diff --git a/net/cert/ct_objects_extractor_openssl.cc b/net/cert/ct_objects_extractor_openssl.cc
index 80fed58d3de04d7e6b112dbcfc1d99465749932d..6fcc3b8e93b512830f48420922c3460a14333d57 100644
--- a/net/cert/ct_objects_extractor_openssl.cc
+++ b/net/cert/ct_objects_extractor_openssl.cc
@@ -224,7 +224,8 @@ bool GetPrecertLogEntry(X509Certificate::OSCertHandle leaf,
int len = i2d_X509_CINF(leaf_copy->cert_info, NULL);
if (len < 0)
return false;
- uint8_t* ptr = reinterpret_cast<uint8_t*>(WriteInto(&to_be_signed, len + 1));
+ uint8_t* ptr =
+ reinterpret_cast<uint8_t*>(base::WriteInto(&to_be_signed, len + 1));
if (i2d_X509_CINF(leaf_copy->cert_info, &ptr) < 0)
return false;
« no previous file with comments | « net/cert/crl_set_storage.cc ('k') | net/cert/jwk_serializer_openssl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698