diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-25 02:25:06 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-25 02:25:06 +0000 |
commit | d8eb842474ce559113a9b0ead0610973985bf693 (patch) | |
tree | 817d637b7bfffa8bebe3d1de0af0aea05d72a8a7 /net/ocsp/nss_ocsp.cc | |
parent | 928930d76cb018b8a496dbdf7166178ef8fab1bf (diff) | |
download | chromium_src-d8eb842474ce559113a9b0ead0610973985bf693.zip chromium_src-d8eb842474ce559113a9b0ead0610973985bf693.tar.gz chromium_src-d8eb842474ce559113a9b0ead0610973985bf693.tar.bz2 |
net: Append base:: in the StringPrintf calls.
(Note: This is a TODO in string_util.h)
BUG=None
TEST=trybots
Review URL: http://codereview.chromium.org/3390026
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@60555 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/ocsp/nss_ocsp.cc')
-rw-r--r-- | net/ocsp/nss_ocsp.cc | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/net/ocsp/nss_ocsp.cc b/net/ocsp/nss_ocsp.cc index bd6a70b..d9b1a26 100644 --- a/net/ocsp/nss_ocsp.cc +++ b/net/ocsp/nss_ocsp.cc @@ -4,11 +4,11 @@ #include "net/ocsp/nss_ocsp.h" -#include <certt.h> #include <certdb.h> -#include <ocsp.h> +#include <certt.h> #include <nspr.h> #include <nss.h> +#include <ocsp.h> #include <secerr.h> #include <string> @@ -20,6 +20,7 @@ #include "base/message_loop.h" #include "base/singleton.h" #include "base/string_util.h" +#include "base/stringprintf.h" #include "base/thread.h" #include "base/time.h" #include "googleurl/src/gurl.h" @@ -448,11 +449,11 @@ class OCSPServerSession { // TODO(ukai): If |host| is an IPv6 literal, we need to quote it with // square brackets []. - std::string url_string(StringPrintf("%s://%s:%d%s", - http_protocol_variant, - host_.c_str(), - port_, - path_and_query_string)); + std::string url_string(base::StringPrintf("%s://%s:%d%s", + http_protocol_variant, + host_.c_str(), + port_, + path_and_query_string)); LOG(INFO) << "URL [" << url_string << "]"; GURL url(url_string); return new OCSPRequestSession( |