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

Side by Side Diff: webkit/common/resource_response_info.cc

Issue 293353007: Move resource_response_info from webkit/ to content/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « webkit/common/resource_response_info.h ('k') | webkit/common/webkit_common.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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.
4
5 #include "webkit/common/resource_response_info.h"
6
7 #include "net/http/http_response_headers.h"
8 #include "webkit/common/appcache/appcache_interfaces.h"
9
10 namespace webkit_glue {
11
12 ResourceResponseInfo::ResourceResponseInfo()
13 : content_length(-1),
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) {
21 }
22
23 ResourceResponseInfo::~ResourceResponseInfo() {}
24
25 } // namespace webkit_glue
OLDNEW
« no previous file with comments | « webkit/common/resource_response_info.h ('k') | webkit/common/webkit_common.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698