| Index: extensions/common/url_pattern_set.h
|
| diff --git a/extensions/common/url_pattern_set.h b/extensions/common/url_pattern_set.h
|
| index 0cab66740ccc9effadc6dfd581d6da5b3c601440..b3116c8c231811c49448eb6a781227ddc6419e91 100644
|
| --- a/extensions/common/url_pattern_set.h
|
| +++ b/extensions/common/url_pattern_set.h
|
| @@ -5,6 +5,7 @@
|
| #ifndef EXTENSIONS_COMMON_URL_PATTERN_SET_H_
|
| #define EXTENSIONS_COMMON_URL_PATTERN_SET_H_
|
|
|
| +#include <iosfwd>
|
| #include <set>
|
|
|
| #include "base/memory/scoped_ptr.h"
|
| @@ -100,6 +101,9 @@ class URLPatternSet {
|
| std::set<URLPattern> patterns_;
|
| };
|
|
|
| +std::ostream& operator<<(std::ostream& out,
|
| + const URLPatternSet& url_pattern_set);
|
| +
|
| } // namespace extensions
|
|
|
| #endif // EXTENSIONS_COMMON_URL_PATTERN_SET_H_
|
|
|