summaryrefslogtreecommitdiffstats
path: root/chrome/browser/local_discovery/device_description.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/local_discovery/device_description.cc')
-rw-r--r--chrome/browser/local_discovery/device_description.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/local_discovery/device_description.cc b/chrome/browser/local_discovery/device_description.cc
index 71e748d..b9a3dda 100644
--- a/chrome/browser/local_discovery/device_description.cc
+++ b/chrome/browser/local_discovery/device_description.cc
@@ -19,7 +19,7 @@ std::string GetValueByName(const std::vector<std::string>& metadata,
const std::string& name) {
std::string prefix(name + "=");
for (const std::string& record : metadata) {
- if (StartsWithASCII(record, prefix, false)) {
+ if (base::StartsWithASCII(record, prefix, false)) {
return record.substr(prefix.size());
}
}