summaryrefslogtreecommitdiffstats
path: root/net/http/http_auth_handler.cc
diff options
context:
space:
mode:
Diffstat (limited to 'net/http/http_auth_handler.cc')
-rw-r--r--net/http/http_auth_handler.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/net/http/http_auth_handler.cc b/net/http/http_auth_handler.cc
index 4858658..ccb8766 100644
--- a/net/http/http_auth_handler.cc
+++ b/net/http/http_auth_handler.cc
@@ -7,6 +7,7 @@
#include "base/histogram.h"
#include "base/logging.h"
#include "base/string_util.h"
+#include "base/stringprintf.h"
#include "net/base/net_errors.h"
namespace net {
@@ -27,7 +28,7 @@ HttpAuthHandler::~HttpAuthHandler() {
//static
std::string HttpAuthHandler::GenerateHistogramNameFromScheme(
const std::string& scheme) {
- return StringPrintf("Net.AuthGenerateToken_%s", scheme.c_str());
+ return base::StringPrintf("Net.AuthGenerateToken_%s", scheme.c_str());
}
bool HttpAuthHandler::InitFromChallenge(