summaryrefslogtreecommitdiffstats
path: root/net/ftp
diff options
context:
space:
mode:
authorerg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-02-23 21:20:23 +0000
committererg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-02-23 21:20:23 +0000
commit47f7753f4c830dce2ef048127da52bfae9ca8d1e (patch)
tree04a01a61a389f10a3cacd7324c413727742af60e /net/ftp
parent6db3cd4ebccf65c9bbe1bb6d6239ec103caaf518 (diff)
downloadchromium_src-47f7753f4c830dce2ef048127da52bfae9ca8d1e.zip
chromium_src-47f7753f4c830dce2ef048127da52bfae9ca8d1e.tar.gz
chromium_src-47f7753f4c830dce2ef048127da52bfae9ca8d1e.tar.bz2
More OOLing on Mac.
BUG=carnitas TEST=compiles Review URL: http://codereview.chromium.org/6546073 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75788 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/ftp')
-rw-r--r--net/ftp/ftp_response_info.cc17
-rw-r--r--net/ftp/ftp_response_info.h7
2 files changed, 19 insertions, 5 deletions
diff --git a/net/ftp/ftp_response_info.cc b/net/ftp/ftp_response_info.cc
new file mode 100644
index 0000000..ddbd1ed
--- /dev/null
+++ b/net/ftp/ftp_response_info.cc
@@ -0,0 +1,17 @@
+// Copyright (c) 2011 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.
+
+#include "net/ftp/ftp_response_info.h"
+
+namespace net {
+
+FtpResponseInfo::FtpResponseInfo()
+ : needs_auth(false),
+ expected_content_size(-1),
+ is_directory_listing(false) {
+}
+
+FtpResponseInfo::~FtpResponseInfo() {}
+
+} // namespace net
diff --git a/net/ftp/ftp_response_info.h b/net/ftp/ftp_response_info.h
index 9db9018..81d09bd 100644
--- a/net/ftp/ftp_response_info.h
+++ b/net/ftp/ftp_response_info.h
@@ -13,11 +13,8 @@ namespace net {
class FtpResponseInfo {
public:
- FtpResponseInfo()
- : needs_auth(false),
- expected_content_size(-1),
- is_directory_listing(false) {
- }
+ FtpResponseInfo();
+ ~FtpResponseInfo();
// True if authentication failed and valid authentication credentials are
// needed.