1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "webkit/common/resource_response_info.h"
7 #include "net/http/http_response_headers.h"
8 #include "webkit/common/appcache/appcache_interfaces.h"
10 namespace webkit_glue
{
12 ResourceResponseInfo::ResourceResponseInfo()
14 encoded_data_length(-1),
15 appcache_id(appcache::kNoCacheId
),
16 was_fetched_via_spdy(false),
17 was_npn_negotiated(false),
18 was_alternate_protocol_available(false),
19 connection_info(net::HttpResponseInfo::CONNECTION_INFO_UNKNOWN
),
20 was_fetched_via_proxy(false) {
23 ResourceResponseInfo::~ResourceResponseInfo() {}
25 } // namespace webkit_glue