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

Unified Diff: net/http/http_util.cc

Issue 1212973002: Add net::CertificateReportSender for handling cert report sending (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: style fixes Created 5 years, 5 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: net/http/http_util.cc
diff --git a/net/http/http_util.cc b/net/http/http_util.cc
index f8d7e9368c09c2ab8ce1f13104c4685726d7165a..dd63538b6e2544332f927b3441edeb19034b06e6 100644
--- a/net/http/http_util.cc
+++ b/net/http/http_util.cc
@@ -864,13 +864,15 @@ HttpUtil::NameValuePairsIterator::NameValuePairsIterator(
value_begin_(end),
value_end_(end),
value_is_quoted_(false),
- values_optional_(optional_values == VALUES_OPTIONAL) {}
+ values_optional_(optional_values == VALUES_OPTIONAL) {
+}
davidben 2015/07/23 00:09:42 Stray change? (I'm guessing a rebase went funny.)
estark 2015/07/23 02:41:22 Done.
HttpUtil::NameValuePairsIterator::NameValuePairsIterator(
std::string::const_iterator begin,
std::string::const_iterator end,
char delimiter)
- : NameValuePairsIterator(begin, end, delimiter, VALUES_NOT_OPTIONAL) {}
+ : NameValuePairsIterator(begin, end, delimiter, VALUES_NOT_OPTIONAL) {
+}
HttpUtil::NameValuePairsIterator::~NameValuePairsIterator() {}

Powered by Google App Engine
This is Rietveld 408576698