| Index: content/common/appcache_interfaces.cc
|
| diff --git a/content/common/appcache_interfaces.cc b/content/common/appcache_interfaces.cc
|
| index c2c619249e976a941c80033a0adb1809e6311d3d..fc1cb2bf402f81313b5538b2639b37ca239da9fa 100644
|
| --- a/content/common/appcache_interfaces.cc
|
| +++ b/content/common/appcache_interfaces.cc
|
| @@ -104,7 +104,7 @@ bool AppCacheNamespace::IsMatch(const GURL& url) const {
|
| // as wildcards which we don't want here, we only do '*'s.
|
| std::string pattern = namespace_url.spec();
|
| if (namespace_url.has_query())
|
| - ReplaceSubstringsAfterOffset(&pattern, 0, "?", "\\?");
|
| + base::ReplaceSubstringsAfterOffset(&pattern, 0, "?", "\\?");
|
| return MatchPattern(url.spec(), pattern);
|
| }
|
| return base::StartsWithASCII(url.spec(), namespace_url.spec(), true);
|
|
|