| Index: net/http/http_auth_handler_digest.cc
|
| diff --git a/net/http/http_auth_handler_digest.cc b/net/http/http_auth_handler_digest.cc
|
| index 289e0c720a2d78d7c68debb556fd4e5a2a9ebe2b..7c14a475d055233d742677dd738e83b7c7d2c337 100644
|
| --- a/net/http/http_auth_handler_digest.cc
|
| +++ b/net/http/http_auth_handler_digest.cc
|
| @@ -10,6 +10,7 @@
|
| #include "base/md5.h"
|
| #include "base/rand_util.h"
|
| #include "base/string_util.h"
|
| +#include "base/stringprintf.h"
|
| #include "base/utf_string_conversions.h"
|
| #include "net/base/net_errors.h"
|
| #include "net/base/net_util.h"
|
| @@ -170,7 +171,7 @@ std::string HttpAuthHandlerDigest::AssembleCredentials(
|
| const std::string& cnonce,
|
| int nonce_count) const {
|
| // the nonce-count is an 8 digit hex string.
|
| - std::string nc = StringPrintf("%08x", nonce_count);
|
| + std::string nc = base::StringPrintf("%08x", nonce_count);
|
|
|
| // TODO(eroman): is this the right encoding?
|
| std::string authorization = (std::string("Digest username=") +
|
|
|