| Index: extensions/common/url_pattern_set.h
|
| diff --git a/extensions/common/url_pattern_set.h b/extensions/common/url_pattern_set.h
|
| index 2f7113973835ffe4346b00ac199cc1723d07cd65..0481d307c8001eff7a7d567b1c68d82d62ac815e 100644
|
| --- a/extensions/common/url_pattern_set.h
|
| +++ b/extensions/common/url_pattern_set.h
|
| @@ -68,7 +68,8 @@ class URLPatternSet {
|
|
|
| void ClearPatterns();
|
|
|
| - // Returns true if the permission |set| is a subset of this.
|
| + // Returns true if every URL that matches |set| is matched by this. In other
|
| + // words, if every pattern in |set| is encompassed by a pattern in this.
|
| bool Contains(const URLPatternSet& set) const;
|
|
|
| // Test if the extent contains a URL.
|
| @@ -92,6 +93,9 @@ class URLPatternSet {
|
| std::string* error);
|
|
|
| private:
|
| + // Returns true if any pattern in this set encompasses |pattern|.
|
| + bool ContainsPattern(const URLPattern& pattern) const;
|
| +
|
| // The list of URL patterns that comprise the extent.
|
| std::set<URLPattern> patterns_;
|
| };
|
|
|