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 1285d7bedb0aba2c119c6490886aa5f5aec52b1c..bed6f230ab68876e726d3d14fffe3ae9843bdd41 100644 |
--- a/net/url_request/url_request_ftp_job.h |
+++ b/net/url_request/url_request_ftp_job.h |
@@ -46,15 +46,14 @@ class URLRequestFtpJob : public URLRequestJob { |
void LogFtpServerType(char server_type); |
// Overridden from URLRequestJob: |
- virtual void Start(); |
- virtual void Kill(); |
- virtual LoadState GetLoadState() const; |
- virtual bool NeedsAuth(); |
+ virtual void Start() OVERRIDE; |
+ virtual void Kill() OVERRIDE; |
+ virtual LoadState GetLoadState() const OVERRIDE; |
+ virtual bool NeedsAuth() OVERRIDE; |
virtual void GetAuthChallengeInfo( |
- scoped_refptr<AuthChallengeInfo>* auth_info); |
- virtual void SetAuth(const string16& username, |
- const string16& password); |
- virtual void CancelAuth(); |
+ scoped_refptr<AuthChallengeInfo>* auth_info) OVERRIDE; |
+ virtual void SetAuth(const AuthCredentials& credentials) OVERRIDE; |
+ virtual void CancelAuth() OVERRIDE; |
// TODO(ibrar): Yet to give another look at this function. |
virtual uint64 GetUploadProgress() const; |