Index: content/browser/geolocation/wifi_data_provider_linux.cc |
diff --git a/content/browser/geolocation/wifi_data_provider_linux.cc b/content/browser/geolocation/wifi_data_provider_linux.cc |
index 1909abfe141b76a903325f4131abafe81df395f7..5fad8c58bcf3ad05325cabf999b6d8c421175fb7 100644 |
--- a/content/browser/geolocation/wifi_data_provider_linux.cc |
+++ b/content/browser/geolocation/wifi_data_provider_linux.cc |
@@ -271,7 +271,7 @@ bool NetworkManagerWlanApi::GetAccessPointsForAdapter( |
continue; |
} |
- ReplaceSubstringsAfterOffset(&mac, 0U, ":", std::string()); |
+ base::ReplaceSubstringsAfterOffset(&mac, 0U, ":", base::StringPiece()); |
std::vector<uint8> mac_bytes; |
if (!base::HexStringToBytes(mac, &mac_bytes) || mac_bytes.size() != 6) { |
LOG(WARNING) << "Can't parse mac address (found " << mac_bytes.size() |