| Index: content/common/appcache_interfaces.cc
 | 
| diff --git a/content/common/appcache_interfaces.cc b/content/common/appcache_interfaces.cc
 | 
| index 5cb1064eb1362427e641fdba6ffd0b86d87a3456..af0d8c1688336dc07344dd4c7dffb2053435622b 100644
 | 
| --- a/content/common/appcache_interfaces.cc
 | 
| +++ b/content/common/appcache_interfaces.cc
 | 
| @@ -108,7 +108,8 @@ bool AppCacheNamespace::IsMatch(const GURL& url) const {
 | 
|        base::ReplaceSubstringsAfterOffset(&pattern, 0, "?", "\\?");
 | 
|      return base::MatchPattern(url.spec(), pattern);
 | 
|    }
 | 
| -  return base::StartsWithASCII(url.spec(), namespace_url.spec(), true);
 | 
| +  return base::StartsWith(url.spec(), namespace_url.spec(),
 | 
| +                          base::CompareCase::SENSITIVE);
 | 
|  }
 | 
|  
 | 
|  bool IsSchemeSupportedForAppCache(const GURL& url) {
 | 
| 
 |