| 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(
|
|
|