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

Unified Diff: net/base/pem_tokenizer.cc

Issue 3390026: net: Append base:: in the StringPrintf calls. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: fix include order Created 10 years, 3 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_util_unittest.cc ('k') | net/disk_cache/backend_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/pem_tokenizer.cc
diff --git a/net/base/pem_tokenizer.cc b/net/base/pem_tokenizer.cc
index 6e830588bf58ada253f9ef6199f93663357d58fc..c79eec152a12c6eee13a2c66a45bfc02e318b886 100644
--- a/net/base/pem_tokenizer.cc
+++ b/net/base/pem_tokenizer.cc
@@ -6,6 +6,7 @@
#include "base/base64.h"
#include "base/string_util.h"
+#include "base/stringprintf.h"
namespace {
@@ -95,8 +96,8 @@ void PEMTokenizer::Init(
allowed_block_types.begin(); it != allowed_block_types.end(); ++it) {
PEMType allowed_type;
allowed_type.type = *it;
- allowed_type.header = StringPrintf(kPEMBeginBlock, it->c_str());
- allowed_type.footer = StringPrintf(kPEMEndBlock, it->c_str());
+ allowed_type.header = base::StringPrintf(kPEMBeginBlock, it->c_str());
+ allowed_type.footer = base::StringPrintf(kPEMEndBlock, it->c_str());
block_types_.push_back(allowed_type);
}
}
« no previous file with comments | « net/base/net_util_unittest.cc ('k') | net/disk_cache/backend_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698