| Index: chromeos/network/geolocation_handler_unittest.cc
|
| diff --git a/chromeos/network/geolocation_handler_unittest.cc b/chromeos/network/geolocation_handler_unittest.cc
|
| index dc2cab0789e5570dda03a7138aac404c3eea6245..74e86cda6e29ffc3a707a0dd993f2dcc85ade01f 100644
|
| --- a/chromeos/network/geolocation_handler_unittest.cc
|
| +++ b/chromeos/network/geolocation_handler_unittest.cc
|
| @@ -49,8 +49,8 @@ class GeolocationHandlerTest : public testing::Test {
|
| std::string mac_address =
|
| base::StringPrintf("%02X:%02X:%02X:%02X:%02X:%02X",
|
| idx, 0, 0, 0, 0, 0);
|
| - std::string channel = StringPrintf("%d", idx);
|
| - std::string strength = StringPrintf("%d", idx * 10);
|
| + std::string channel = base::StringPrintf("%d", idx);
|
| + std::string strength = base::StringPrintf("%d", idx * 10);
|
| properties.SetStringWithoutPathExpansion(
|
| shill::kGeoMacAddressProperty, mac_address);
|
| properties.SetStringWithoutPathExpansion(
|
|
|