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

Unified Diff: net/proxy/proxy_resolver_v8_tracing_unittest.cc

Issue 12767006: [Cleanup] Remove StringPrintf from global namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase, once more Created 7 years, 9 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
Index: net/proxy/proxy_resolver_v8_tracing_unittest.cc
diff --git a/net/proxy/proxy_resolver_v8_tracing_unittest.cc b/net/proxy/proxy_resolver_v8_tracing_unittest.cc
index 1c6aa1329bbea790a21c120836d35151ca7523c1..e0162d450878d3a5047da029dde663542c756b47 100644
--- a/net/proxy/proxy_resolver_v8_tracing_unittest.cc
+++ b/net/proxy/proxy_resolver_v8_tracing_unittest.cc
@@ -74,8 +74,8 @@ class MockErrorObserver : public ProxyResolverErrorObserver {
const string16& error) OVERRIDE {
{
base::AutoLock l(lock_);
- output += StringPrintf("Error: line %d: %s\n", line_number,
- UTF16ToASCII(error).c_str());
+ output += base::StringPrintf("Error: line %d: %s\n", line_number,
+ UTF16ToASCII(error).c_str());
}
event_.Signal();
}

Powered by Google App Engine
This is Rietveld 408576698