diff options
author | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-04 09:58:32 +0000 |
---|---|---|
committer | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-04 09:58:32 +0000 |
commit | a115b010733df8d53f4f6cc0f66cb90b7a8069dc (patch) | |
tree | e2aed2c2980b7061e6b36b1967f19edd28a07678 /webkit/glue | |
parent | 76ae486cba7db7b2adada0716ccbbb846371363d (diff) | |
download | chromium_src-a115b010733df8d53f4f6cc0f66cb90b7a8069dc.zip chromium_src-a115b010733df8d53f4f6cc0f66cb90b7a8069dc.tar.gz chromium_src-a115b010733df8d53f4f6cc0f66cb90b7a8069dc.tar.bz2 |
Split FTP LIST parsing code into individual files for each listing style.
This turns out to be much better code organisation strategy. We're going
to have even more parsers.
TEST=Covered by net_unittests.
BUG=25520
Review URL: http://codereview.chromium.org/465035
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33807 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue')
-rw-r--r-- | webkit/glue/ftp_directory_listing_response_delegate.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webkit/glue/ftp_directory_listing_response_delegate.cc b/webkit/glue/ftp_directory_listing_response_delegate.cc index b437d2c..c06717d 100644 --- a/webkit/glue/ftp_directory_listing_response_delegate.cc +++ b/webkit/glue/ftp_directory_listing_response_delegate.cc @@ -14,7 +14,7 @@ #include "net/base/escape.h" #include "net/base/net_errors.h" #include "net/base/net_util.h" -#include "net/ftp/ftp_directory_listing_parsers.h" +#include "net/ftp/ftp_directory_listing_parser.h" #include "net/ftp/ftp_server_type_histograms.h" #include "unicode/ucsdet.h" #include "third_party/WebKit/WebKit/chromium/public/WebURL.h" |