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

Unified Diff: net/http/mock_gssapi_library_posix.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/http/http_transaction_unittest.h ('k') | net/http/partial_data.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/mock_gssapi_library_posix.cc
diff --git a/net/http/mock_gssapi_library_posix.cc b/net/http/mock_gssapi_library_posix.cc
index fed2ccdb557413ecd6dd156254e8d4bfbb195ab6..d0a46b1dd174c7f2b4e6962b2230b34cb1480398 100644
--- a/net/http/mock_gssapi_library_posix.cc
+++ b/net/http/mock_gssapi_library_posix.cc
@@ -6,6 +6,7 @@
#include "base/logging.h"
#include "base/string_util.h"
+#include "base/stringprintf.h"
#include "net/third_party/gssapi/gssapi.h"
#include "testing/gtest/include/gtest/gtest.h"
@@ -312,9 +313,9 @@ OM_uint32 MockGSSAPILibrary::display_status(
gss_buffer_t status_string) {
if (minor_status)
*minor_status = 0;
- std::string msg = StringPrintf("Value: %u, Type %u",
- status_value,
- status_type);
+ std::string msg = base::StringPrintf("Value: %u, Type %u",
+ status_value,
+ status_type);
if (message_context)
*message_context = 0;
BufferFromString(msg, status_string);
« no previous file with comments | « net/http/http_transaction_unittest.h ('k') | net/http/partial_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698