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

Unified Diff: content/browser/geolocation/wifi_data_provider_chromeos_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: content/browser/geolocation/wifi_data_provider_chromeos_unittest.cc
diff --git a/content/browser/geolocation/wifi_data_provider_chromeos_unittest.cc b/content/browser/geolocation/wifi_data_provider_chromeos_unittest.cc
index e6e6404f5fdd98a7fcd7507b47ea20827c42ee2b..8fcb6c5fef527e051ab3a02ce08b9784df0d301d 100644
--- a/content/browser/geolocation/wifi_data_provider_chromeos_unittest.cc
+++ b/content/browser/geolocation/wifi_data_provider_chromeos_unittest.cc
@@ -46,8 +46,8 @@ class GeolocationChromeOsWifiDataProviderTest : public testing::Test {
std::string mac_address =
base::StringPrintf("%02X:%02X:%02X:%02X:%02X:%02X",
i, j, 3, 4, 5, 6);
- std::string channel = StringPrintf("%d", i * 10 + j);
- std::string strength = StringPrintf("%d", i * 100 + j);
+ std::string channel = base::StringPrintf("%d", i * 10 + j);
+ std::string strength = base::StringPrintf("%d", i * 100 + j);
properties.SetStringWithoutPathExpansion(
shill::kGeoMacAddressProperty, mac_address);
properties.SetStringWithoutPathExpansion(

Powered by Google App Engine
This is Rietveld 408576698