Chromium Code Reviews| 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..9ef8f21c222072445831e0bb05349badca1ea181 100644 |
| --- a/chrome/common/extensions/url_pattern_set.h |
| +++ b/chrome/common/extensions/url_pattern_set.h |
| @@ -15,6 +15,11 @@ class GURL; |
| // Represents the set of URLs an extension uses for web content. |
| class URLPatternSet { |
| public: |
| + // Passes ownership to caller. |
|
Matt Perry
2011/06/21 00:43:10
ownership of what?
jstritar
2011/06/21 23:12:16
Oops, I had originally been returning a pointer to
|
| + static void CreateUnion(const URLPatternSet& set1, |
| + const URLPatternSet& set2, |
| + URLPatternSet* out); |
| + |
| URLPatternSet(); |
| URLPatternSet(const URLPatternSet& rhs); |
| ~URLPatternSet(); |