diff options
author | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-26 12:11:28 +0000 |
---|---|---|
committer | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-26 12:11:28 +0000 |
commit | d8be74ec121d0ea5431e8b7c6dd04450e0394d33 (patch) | |
tree | 262e8828df0019e2aee7b5511b61a0cbb62c8fec | |
parent | 621241a1de4dcafe244ea5aaaf513ade7e05a131 (diff) | |
download | chromium_src-d8be74ec121d0ea5431e8b7c6dd04450e0394d33.zip chromium_src-d8be74ec121d0ea5431e8b7c6dd04450e0394d33.tar.gz chromium_src-d8be74ec121d0ea5431e8b7c6dd04450e0394d33.tar.bz2 |
Fix Clang build after landing http://codereview.chromium.org/6670085/
TBR=eroman
BUG=76171
Review URL: http://codereview.chromium.org/6747024
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79491 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | net/ftp/ftp_directory_listing_parser.cc | 3 | ||||
-rw-r--r-- | net/ftp/ftp_directory_listing_parser.h | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/net/ftp/ftp_directory_listing_parser.cc b/net/ftp/ftp_directory_listing_parser.cc index 8aa3696..8c36bb6 100644 --- a/net/ftp/ftp_directory_listing_parser.cc +++ b/net/ftp/ftp_directory_listing_parser.cc @@ -58,6 +58,9 @@ int FillInRawName(const std::string& encoding, namespace net { +FtpDirectoryListingEntry::FtpDirectoryListingEntry() { +} + int ParseFtpDirectoryListing(const std::string& text, const base::Time& current_time, std::vector<FtpDirectoryListingEntry>* entries) { diff --git a/net/ftp/ftp_directory_listing_parser.h b/net/ftp/ftp_directory_listing_parser.h index b6c95fe..d75ef82 100644 --- a/net/ftp/ftp_directory_listing_parser.h +++ b/net/ftp/ftp_directory_listing_parser.h @@ -22,6 +22,8 @@ struct FtpDirectoryListingEntry { SYMLINK, }; + FtpDirectoryListingEntry(); + Type type; string16 name; // Name (UTF-16-encoded). std::string raw_name; // Name in original character encoding. |