Index: net/ftp/ftp_directory_listing_buffer.cc |
diff --git a/net/ftp/ftp_directory_listing_buffer.cc b/net/ftp/ftp_directory_listing_buffer.cc |
index f6e8748d099cd595c76928602526a26c574897a9..58533b81112702dad3acb3f1dfe296ccaaabb700 100644 |
--- a/net/ftp/ftp_directory_listing_buffer.cc |
+++ b/net/ftp/ftp_directory_listing_buffer.cc |
@@ -9,9 +9,7 @@ |
#include "base/stl_util-inl.h" |
#include "base/string_util.h" |
#include "net/base/net_errors.h" |
-#include "net/ftp/ftp_directory_listing_parser_hprc.h" |
#include "net/ftp/ftp_directory_listing_parser_ls.h" |
-#include "net/ftp/ftp_directory_listing_parser_mlsd.h" |
#include "net/ftp/ftp_directory_listing_parser_netware.h" |
#include "net/ftp/ftp_directory_listing_parser_vms.h" |
#include "net/ftp/ftp_directory_listing_parser_windows.h" |
@@ -21,9 +19,7 @@ namespace net { |
FtpDirectoryListingBuffer::FtpDirectoryListingBuffer( |
const base::Time& current_time) |
: current_parser_(NULL) { |
- parsers_.insert(new FtpDirectoryListingParserHprc(current_time)); |
parsers_.insert(new FtpDirectoryListingParserLs(current_time)); |
- parsers_.insert(new FtpDirectoryListingParserMlsd()); |
parsers_.insert(new FtpDirectoryListingParserNetware(current_time)); |
parsers_.insert(new FtpDirectoryListingParserVms()); |
parsers_.insert(new FtpDirectoryListingParserWindows()); |