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

Unified Diff: chromeos/network/shill_property_handler.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/shill_property_handler.cc
diff --git a/chromeos/network/shill_property_handler.cc b/chromeos/network/shill_property_handler.cc
index fa01cc91a2308f16923a210d9529868c74027299..0e3c77a85dc42c7c1347cc107cbc30b1ec084546 100644
--- a/chromeos/network/shill_property_handler.cc
+++ b/chromeos/network/shill_property_handler.cc
@@ -320,7 +320,7 @@ void ShillPropertyHandler::UpdateAvailableTechnologies(
available_technologies_.clear();
network_event_log::AddEntry(
kLogModule, "AvailableTechnologiesChanged",
- StringPrintf("Size: %"PRIuS, technologies.GetSize()));
+ base::StringPrintf("Size: %"PRIuS, technologies.GetSize()));
for (base::ListValue::const_iterator iter = technologies.begin();
iter != technologies.end(); ++iter) {
std::string technology;
@@ -335,7 +335,7 @@ void ShillPropertyHandler::UpdateEnabledTechnologies(
enabled_technologies_.clear();
network_event_log::AddEntry(
kLogModule, "EnabledTechnologiesChanged",
- StringPrintf("Size: %"PRIuS, technologies.GetSize()));
+ base::StringPrintf("Size: %"PRIuS, technologies.GetSize()));
for (base::ListValue::const_iterator iter = technologies.begin();
iter != technologies.end(); ++iter) {
std::string technology;
@@ -350,7 +350,7 @@ void ShillPropertyHandler::UpdateUninitializedTechnologies(
uninitialized_technologies_.clear();
network_event_log::AddEntry(
kLogModule, "UninitializedTechnologiesChanged",
- StringPrintf("Size: %"PRIuS, technologies.GetSize()));
+ base::StringPrintf("Size: %"PRIuS, technologies.GetSize()));
for (base::ListValue::const_iterator iter = technologies.begin();
iter != technologies.end(); ++iter) {
std::string technology;

Powered by Google App Engine
This is Rietveld 408576698