| Index: third_party/WebKit/Source/platform/weborigin/OriginAccessEntry.h
|
| diff --git a/third_party/WebKit/Source/platform/weborigin/OriginAccessEntry.h b/third_party/WebKit/Source/platform/weborigin/OriginAccessEntry.h
|
| index 1d2846f314bfea56741af294272a21dab77a3e34..7007f7a10134fac275457181607f6bdc785e1d42 100644
|
| --- a/third_party/WebKit/Source/platform/weborigin/OriginAccessEntry.h
|
| +++ b/third_party/WebKit/Source/platform/weborigin/OriginAccessEntry.h
|
| @@ -85,8 +85,8 @@ private:
|
|
|
| PLATFORM_EXPORT inline bool operator==(const OriginAccessEntry& a, const OriginAccessEntry& b)
|
| {
|
| - return equalIgnoringCase(a.protocol(), b.protocol())
|
| - && equalIgnoringCase(a.host(), b.host())
|
| + return equalIgnoringASCIICase(a.protocol(), b.protocol())
|
| + && equalIgnoringASCIICase(a.host(), b.host())
|
| && a.subdomainSettings() == b.subdomainSettings();
|
| }
|
|
|
|
|