Index: net/http/http_util.h |
diff --git a/net/http/http_util.h b/net/http/http_util.h |
index 6daf173a7187b8aa1e3cadf80770c8f81c9407df..776b8768b03a1973b1645361dc06168e3608b192 100644 |
--- a/net/http/http_util.h |
+++ b/net/http/http_util.h |
@@ -167,6 +167,7 @@ class HttpUtil { |
HeadersIterator(std::string::const_iterator headers_begin, |
std::string::const_iterator headers_end, |
const std::string& line_delimiter); |
+ ~HeadersIterator(); |
// Advances the iterator to the next header, if any. Returns true if there |
// is a next header. Use name* and values* methods to access the resultant |
@@ -229,6 +230,7 @@ class HttpUtil { |
ValuesIterator(std::string::const_iterator values_begin, |
std::string::const_iterator values_end, |
char delimiter); |
+ ~ValuesIterator(); |
// Advances the iterator to the next value, if any. Returns true if there |
// is a next value. Use value* methods to access the resultant value. |