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

Unified Diff: net/cert/crl_set_storage.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/base/net_string_util_icu.cc ('k') | net/cert/ct_objects_extractor_openssl.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 99403da3896b7fe6265fbf1ae9e12c2a91402a14..da8ade1aadf5ca3bc6b4f6727fffaceaeeeaf42b 100644
--- a/net/cert/crl_set_storage.cc
+++ b/net/cert/crl_set_storage.cc
@@ -520,7 +520,7 @@ std::string CRLSetStorage::Serialize(const CRLSet* crl_set) {
std::string ret;
uint8_t* out = reinterpret_cast<uint8_t*>(
- WriteInto(&ret, len + 1 /* to include final NUL */));
+ base::WriteInto(&ret, len + 1 /* to include final NUL */));
size_t off = 0;
CHECK(base::IsValueInRangeForNumericType<uint16_t>(header.size()));
out[off++] = static_cast<uint8_t>(header.size());
« no previous file with comments | « net/base/net_string_util_icu.cc ('k') | net/cert/ct_objects_extractor_openssl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698