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

Unified Diff: net/ftp/ftp_response_info.h

Issue 992733002: Remove //net (except for Android test stuff) and sdch (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 9 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
« no previous file with comments | « net/ftp/ftp_request_info.h ('k') | net/ftp/ftp_response_info.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/ftp/ftp_response_info.h
diff --git a/net/ftp/ftp_response_info.h b/net/ftp/ftp_response_info.h
deleted file mode 100644
index 8bae8c1993108806be5737e36e5588f539b8d53b..0000000000000000000000000000000000000000
--- a/net/ftp/ftp_response_info.h
+++ /dev/null
@@ -1,43 +0,0 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef NET_FTP_FTP_RESPONSE_INFO_H_
-#define NET_FTP_FTP_RESPONSE_INFO_H_
-
-#include "base/time/time.h"
-#include "net/base/host_port_pair.h"
-
-namespace net {
-
-class FtpResponseInfo {
- public:
- FtpResponseInfo();
- ~FtpResponseInfo();
-
- // True if authentication failed and valid authentication credentials are
- // needed.
- bool needs_auth;
-
- // The time at which the request was made that resulted in this response.
- // For cached responses, this time could be "far" in the past.
- base::Time request_time;
-
- // The time at which the response headers were received. For cached
- // responses, this time could be "far" in the past.
- base::Time response_time;
-
- // Expected content size, in bytes, as reported by SIZE command. Only valid
- // for file downloads. -1 means unknown size.
- int64 expected_content_size;
-
- // True if the response data is of a directory listing.
- bool is_directory_listing;
-
- // Remote address of the socket which fetched this resource.
- HostPortPair socket_address;
-};
-
-} // namespace net
-
-#endif // NET_FTP_FTP_RESPONSE_INFO_H_
« no previous file with comments | « net/ftp/ftp_request_info.h ('k') | net/ftp/ftp_response_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698