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

Unified Diff: net/disk_cache/blockfile/entry_impl_v3.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/disk_cache/blockfile/entry_impl.cc ('k') | net/proxy/proxy_resolver_v8.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/disk_cache/blockfile/entry_impl_v3.cc
diff --git a/net/disk_cache/blockfile/entry_impl_v3.cc b/net/disk_cache/blockfile/entry_impl_v3.cc
index 01ac2768e2c8a33d805dc076739d5760e7f7f7d5..73719364829fb761998f0f765ebc86c9e0081be5 100644
--- a/net/disk_cache/blockfile/entry_impl_v3.cc
+++ b/net/disk_cache/blockfile/entry_impl_v3.cc
@@ -498,7 +498,7 @@ std::string EntryImplV3::GetKey() const {
if (!offset && key_file->GetLength() != static_cast<size_t>(key_len))
return std::string();
- if (!key_file->Read(WriteInto(&key_, key_len), key_len, offset))
+ if (!key_file->Read(base::WriteInto(&key_, key_len), key_len, offset))
key_.clear();
return key_;
}
« no previous file with comments | « net/disk_cache/blockfile/entry_impl.cc ('k') | net/proxy/proxy_resolver_v8.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698