Index: content/common/service_worker/service_worker_types.h |
diff --git a/content/common/service_worker/service_worker_types.h b/content/common/service_worker/service_worker_types.h |
index 7f25293c98247d0862c07a1d5330cf8954e4812d..7d7f1a30840d9037a09a526e362a33ddf3bf379c 100644 |
--- a/content/common/service_worker/service_worker_types.h |
+++ b/content/common/service_worker/service_worker_types.h |
@@ -101,7 +101,7 @@ enum ServiceWorkerFetchEventResult { |
struct ServiceWorkerCaseInsensitiveCompare { |
bool operator()(const std::string& lhs, const std::string& rhs) const { |
- return base::strcasecmp(lhs.c_str(), rhs.c_str()) < 0; |
+ return base::CompareCaseInsensitiveASCII(lhs, rhs) < 0; |
} |
}; |