Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(76)

Unified Diff: net/url_request/url_request_ftp_job.h

Issue 6382003: Reorder the methods in net/url_request/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Compiling net_unittests != compiling the rest of chrome Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/url_request/url_request_filter.cc ('k') | net/url_request/url_request_ftp_job.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/url_request/url_request_ftp_job.h
diff --git a/net/url_request/url_request_ftp_job.h b/net/url_request/url_request_ftp_job.h
index ed65214c062e0991f9513394e8b24da7b9a8f51b..fe85ba328ba1f051f46da75d81dd67e41e0f53ba 100644
--- a/net/url_request/url_request_ftp_job.h
+++ b/net/url_request/url_request_ftp_job.h
@@ -24,7 +24,6 @@ class URLRequestContext;
// provides an implementation for FTP.
class URLRequestFtpJob : public URLRequestJob {
public:
-
explicit URLRequestFtpJob(URLRequest* request);
static URLRequestJob* Factory(URLRequest* request,
@@ -36,6 +35,15 @@ class URLRequestFtpJob : public URLRequestJob {
private:
virtual ~URLRequestFtpJob();
+ void StartTransaction();
+
+ void OnStartCompleted(int result);
+ void OnReadCompleted(int result);
+
+ void RestartTransactionWithAuth();
+
+ void LogFtpServerType(char server_type);
+
// Overridden from URLRequestJob:
virtual void Start();
virtual void Kill();
@@ -51,15 +59,6 @@ class URLRequestFtpJob : public URLRequestJob {
virtual uint64 GetUploadProgress() const;
virtual bool ReadRawData(IOBuffer* buf, int buf_size, int *bytes_read);
- void StartTransaction();
-
- void OnStartCompleted(int result);
- void OnReadCompleted(int result);
-
- void RestartTransactionWithAuth();
-
- void LogFtpServerType(char server_type);
-
FtpRequestInfo request_info_;
scoped_ptr<FtpTransaction> transaction_;
« no previous file with comments | « net/url_request/url_request_filter.cc ('k') | net/url_request/url_request_ftp_job.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698