Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(25)

Unified Diff: extensions/common/url_pattern_set.h

Issue 300573002: Add stream operators for URLPattern and URLPatternSet and unit test for URLPatternSet (Closed) Base URL: https://chromium.googlesource.com/chromium/src@permissions
Patch Set: Review comments Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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..ed2163f566ffa49a9aeeb9df36c61fb433a18cf0 100644
--- a/extensions/common/url_pattern_set.h
+++ b/extensions/common/url_pattern_set.h
@@ -100,6 +100,9 @@ class URLPatternSet {
std::set<URLPattern> patterns_;
};
+std::ostream& operator<<(std::ostream& out,
Jeffrey Yasskin 2014/05/28 22:32:04 Also needs <iosfwd>
+ const URLPatternSet& url_pattern_set);
+
} // namespace extensions
#endif // EXTENSIONS_COMMON_URL_PATTERN_SET_H_

Powered by Google App Engine
This is Rietveld 408576698