diff options
author | wtc@chromium.org <wtc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-25 17:32:14 +0000 |
---|---|---|
committer | wtc@chromium.org <wtc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-25 17:32:14 +0000 |
commit | 5de4b03e3bcd97feae59de8828704088f97c5705 (patch) | |
tree | 9c43645e225fe698a88f05e7ee0d54eae0d492c7 /net/url_request/url_request_job_manager.cc | |
parent | eca6a4f5c6194885dee51b9d5ffc978ef18acf51 (diff) | |
download | chromium_src-5de4b03e3bcd97feae59de8828704088f97c5705.zip chromium_src-5de4b03e3bcd97feae59de8828704088f97c5705.tar.gz chromium_src-5de4b03e3bcd97feae59de8828704088f97c5705.tar.bz2 |
[Second attempt]
Use the new portable FTP implementation on non-Windows platforms.
Note: the new FTP is still work in progress.
Original review URL: http://codereview.chromium.org/119342
R=dank
BUG=http://crbug.com/4965
TEST=none
Review URL: http://codereview.chromium.org/146044
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19258 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/url_request/url_request_job_manager.cc')
-rw-r--r-- | net/url_request/url_request_job_manager.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/url_request/url_request_job_manager.cc b/net/url_request/url_request_job_manager.cc index d964532..0b193c4 100644 --- a/net/url_request/url_request_job_manager.cc +++ b/net/url_request/url_request_job_manager.cc @@ -16,7 +16,7 @@ #if defined(OS_WIN) #include "net/url_request/url_request_ftp_job.h" #else -// TODO(playmobil): Implement on non-windows platforms. +#include "net/url_request/url_request_new_ftp_job.h" #endif #include "net/url_request/url_request_http_job.h" #include "net/url_request/url_request_view_cache_job.h" @@ -38,7 +38,7 @@ static const SchemeToFactory kBuiltinFactories[] = { #if defined(OS_WIN) { "ftp", URLRequestFtpJob::Factory }, #else -// TODO(playmobil): Implement on non-windows platforms. + { "ftp", URLRequestNewFtpJob::Factory }, #endif { "about", URLRequestAboutJob::Factory }, { "view-cache", URLRequestViewCacheJob::Factory }, |