| 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 917c9ed9ff4055db17e8dbb1c98be412c876d3b5..631c56320deb294acba043fceea3286c3f6850fe 100644
|
| --- a/content/common/service_worker/service_worker_types.h
|
| +++ b/content/common/service_worker/service_worker_types.h
|
| @@ -102,7 +102,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;
|
| }
|
| };
|
|
|
|
|