| Index: components/subresource_filter/core/common/url_pattern_matching.h
|
| diff --git a/components/subresource_filter/core/common/url_pattern_matching.h b/components/subresource_filter/core/common/url_pattern_matching.h
|
| index 24608b89b7e04fbfaa74b037d82e06ab79e5d5be..937b703edfaa9fd66883322d4f5ad0282c6cffc4 100644
|
| --- a/components/subresource_filter/core/common/url_pattern_matching.h
|
| +++ b/components/subresource_filter/core/common/url_pattern_matching.h
|
| @@ -63,10 +63,10 @@ void BuildFailureFunction(const UrlPattern& pattern,
|
| //
|
| // TODO(pkalinnikov): Outline algorithms implemented in this function.
|
| template <typename FailureIter>
|
| -bool IsMatch(const GURL& url,
|
| - const UrlPattern& pattern,
|
| - FailureIter failure_begin,
|
| - FailureIter failure_end);
|
| +bool IsUrlPatternMatch(const GURL& url,
|
| + const UrlPattern& pattern,
|
| + FailureIter failure_begin,
|
| + FailureIter failure_end);
|
|
|
| // Implementation --------------------------------------------------------------
|
|
|
| @@ -168,10 +168,10 @@ void BuildFailureFunction(const UrlPattern& pattern,
|
| }
|
|
|
| template <typename FailureIter>
|
| -bool IsMatch(const GURL& url,
|
| - const UrlPattern& pattern,
|
| - FailureIter failure_begin,
|
| - FailureIter failure_end) {
|
| +bool IsUrlPatternMatch(const GURL& url,
|
| + const UrlPattern& pattern,
|
| + FailureIter failure_begin,
|
| + FailureIter failure_end) {
|
| DCHECK(url.is_valid());
|
|
|
| StringSplitter<impl::IsWildcard> subpatterns(pattern.url_pattern);
|
|
|