| Index: chrome/common/extensions/url_pattern_set.h
|
| diff --git a/chrome/common/extensions/url_pattern_set.h b/chrome/common/extensions/url_pattern_set.h
|
| index ac50afc1afdb2bd9d8d5594f31623989936180c9..2120e547e41506390641506cbcfc1b36f20e31ee 100644
|
| --- a/chrome/common/extensions/url_pattern_set.h
|
| +++ b/chrome/common/extensions/url_pattern_set.h
|
| @@ -15,6 +15,12 @@ class GURL;
|
| // Represents the set of URLs an extension uses for web content.
|
| class URLPatternSet {
|
| public:
|
| + // Clears |out| and populates the set with the union of |set1| and |set2|.
|
| + // NOTE: this does not discard duplicates.
|
| + static void CreateUnion(const URLPatternSet& set1,
|
| + const URLPatternSet& set2,
|
| + URLPatternSet* out);
|
| +
|
| URLPatternSet();
|
| URLPatternSet(const URLPatternSet& rhs);
|
| ~URLPatternSet();
|
|
|