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

Unified Diff: chromeos/network/network_event_log.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: chromeos/network/network_event_log.cc
diff --git a/chromeos/network/network_event_log.cc b/chromeos/network/network_event_log.cc
index 84d60792b761837e73e536f2cbb21103fb94bf75..be8d0cb770d10cda2e6794987d731bf100cd1b5c 100644
--- a/chromeos/network/network_event_log.cc
+++ b/chromeos/network/network_event_log.cc
@@ -49,7 +49,7 @@ std::string LogEntry::ToString() const {
if (!description.empty())
line += ": " + description;
if (count > 1)
- line += StringPrintf(" (%d)", count);
+ line += base::StringPrintf(" (%d)", count);
line += "\n";
return line;
}

Powered by Google App Engine
This is Rietveld 408576698