summaryrefslogtreecommitdiffstats
path: root/net/http/http_response_info.cc
diff options
context:
space:
mode:
authormichaeln@chromium.org <michaeln@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-13 19:44:23 +0000
committermichaeln@chromium.org <michaeln@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-13 19:44:23 +0000
commit4b8860f4c3453aa71053297d22f8c5f8f74b8f92 (patch)
tree9572807f1091483ef7fb6b1e30996d7c6dd427d1 /net/http/http_response_info.cc
parente23d3a394aed0b7f353edfeaac2fc2181085c8ff (diff)
downloadchromium_src-4b8860f4c3453aa71053297d22f8c5f8f74b8f92.zip
chromium_src-4b8860f4c3453aa71053297d22f8c5f8f74b8f92.tar.gz
chromium_src-4b8860f4c3453aa71053297d22f8c5f8f74b8f92.tar.bz2
Initialize all data members in HTTPResponseInfo's new ctor and remove the related valgrind suppression.
BUG=51940 TEST=n/a Review URL: http://codereview.chromium.org/3163010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56068 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/http/http_response_info.cc')
-rw-r--r--net/http/http_response_info.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/net/http/http_response_info.cc b/net/http/http_response_info.cc
index 3e1075b..a83a642 100644
--- a/net/http/http_response_info.cc
+++ b/net/http/http_response_info.cc
@@ -71,6 +71,7 @@ HttpResponseInfo::HttpResponseInfo(const HttpResponseInfo& rhs)
: was_cached(rhs.was_cached),
was_fetched_via_spdy(rhs.was_fetched_via_spdy),
was_npn_negotiated(rhs.was_npn_negotiated),
+ was_alternate_protocol_available(rhs.was_alternate_protocol_available),
was_fetched_via_proxy(rhs.was_fetched_via_proxy),
request_time(rhs.request_time),
response_time(rhs.response_time),
@@ -89,6 +90,7 @@ HttpResponseInfo& HttpResponseInfo::operator=(const HttpResponseInfo& rhs) {
was_cached = rhs.was_cached;
was_fetched_via_spdy = rhs.was_fetched_via_spdy;
was_npn_negotiated = rhs.was_npn_negotiated;
+ was_alternate_protocol_available = rhs.was_alternate_protocol_available;
was_fetched_via_proxy = rhs.was_fetched_via_proxy;
request_time = rhs.request_time;
response_time = rhs.response_time;