diff options
Diffstat (limited to 'net/ftp/ftp_transaction.h')
-rw-r--r-- | net/ftp/ftp_transaction.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/ftp/ftp_transaction.h b/net/ftp/ftp_transaction.h index d0620f6..3d629746 100644 --- a/net/ftp/ftp_transaction.h +++ b/net/ftp/ftp_transaction.h @@ -36,9 +36,9 @@ class FtpTransaction { // NOTE: The transaction is not responsible for deleting the callback object. // // Profiling information for the request is saved to |load_log| if non-NULL. - virtual int Start(LoadLog* load_log, - const FtpRequestInfo* request_info, - CompletionCallback* callback) = 0; + virtual int Start(const FtpRequestInfo* request_info, + CompletionCallback* callback, + LoadLog* load_log) = 0; // Restarts the FTP transaction with authentication credentials. virtual int RestartWithAuth(const std::wstring& username, |