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

Unified Diff: net/url_request/url_request_ftp_job.h

Issue 8568021: Add OVERRIDE to net/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: net only Created 9 years, 1 month 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_file_job.h ('k') | net/url_request/url_request_http_job.h » ('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 5cee887b2b1692c4733e398c1ed0a6922c620bcb..bbec2b2580390eec43ca2cffa262b6deb4cb4656 100644
--- a/net/url_request/url_request_ftp_job.h
+++ b/net/url_request/url_request_ftp_job.h
@@ -29,8 +29,8 @@ class URLRequestFtpJob : public URLRequestJob {
const std::string& scheme);
// Overridden from URLRequestJob:
- virtual bool GetMimeType(std::string* mime_type) const;
- virtual HostPortPair GetSocketAddress() const;
+ virtual bool GetMimeType(std::string* mime_type) const OVERRIDE;
+ virtual HostPortPair GetSocketAddress() const OVERRIDE;
private:
virtual ~URLRequestFtpJob();
@@ -55,8 +55,10 @@ class URLRequestFtpJob : public URLRequestJob {
virtual void CancelAuth() OVERRIDE;
// TODO(ibrar): Yet to give another look at this function.
- virtual uint64 GetUploadProgress() const;
- virtual bool ReadRawData(IOBuffer* buf, int buf_size, int *bytes_read);
+ virtual uint64 GetUploadProgress() const OVERRIDE;
+ virtual bool ReadRawData(IOBuffer* buf,
+ int buf_size,
+ int *bytes_read) OVERRIDE;
FtpRequestInfo request_info_;
scoped_ptr<FtpTransaction> transaction_;
« no previous file with comments | « net/url_request/url_request_file_job.h ('k') | net/url_request/url_request_http_job.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698