Chromium Code Reviews| Index: net/url_request/url_request_ftp_job.h |
| =================================================================== |
| --- net/url_request/url_request_ftp_job.h (revision 31079) |
| +++ net/url_request/url_request_ftp_job.h (working copy) |
| @@ -14,8 +14,6 @@ |
| public: |
| static URLRequestJob* Factory(URLRequest* request, const std::string& scheme); |
| - virtual ~URLRequestFtpJob(); |
| - |
| // URLRequestJob methods: |
| virtual void Start(); |
| virtual bool GetMimeType(std::string* mime_type) const; |
| @@ -38,6 +36,8 @@ |
| virtual bool IsRedirectResponse(GURL* location, int* http_status_code); |
| private: |
| + ~URLRequestFtpJob(); |
|
eroman
2009/11/05 20:52:19
was it intentional to remove the virtual keyword?
jam
2009/11/05 21:56:02
it wasn't needed, but I'll keep it the way it was
|
| + |
| // Called after InternetConnect successfully connects to server. |
| void OnConnect(); |