diff options
Diffstat (limited to 'net/url_request/view_cache_helper.cc')
-rw-r--r-- | net/url_request/view_cache_helper.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/url_request/view_cache_helper.cc b/net/url_request/view_cache_helper.cc index 4a3ad02..531b055 100644 --- a/net/url_request/view_cache_helper.cc +++ b/net/url_request/view_cache_helper.cc @@ -28,7 +28,7 @@ void HexDump(const char *buf, size_t buf_len, std::string* result) { const unsigned char *p; while (buf_len) { - StringAppendF(result, "%08x: ", offset); + base::StringAppendF(result, "%08x: ", offset); offset += kMaxRows; p = (const unsigned char *) buf; @@ -38,7 +38,7 @@ void HexDump(const char *buf, size_t buf_len, std::string* result) { // print hex codes: for (i = 0; i < row_max; ++i) - StringAppendF(result, "%02x ", *p++); + base::StringAppendF(result, "%02x ", *p++); for (i = row_max; i < kMaxRows; ++i) result->append(" "); |