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

Unified Diff: content/test/net/url_request_slow_download_job.h

Issue 671663002: Standardize usage of virtual/override/final in content/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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 | « content/test/net/url_request_abort_on_end_job.h ('k') | content/test/plugin/plugin_arguments_test.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/net/url_request_slow_download_job.h
diff --git a/content/test/net/url_request_slow_download_job.h b/content/test/net/url_request_slow_download_job.h
index 78faa38476ab453ab93f703dc8dd9ea20af73cfc..08b6dc08c1daff63de5cce8dce447724572f0f4e 100644
--- a/content/test/net/url_request_slow_download_job.h
+++ b/content/test/net/url_request_slow_download_job.h
@@ -35,12 +35,10 @@ class URLRequestSlowDownloadJob : public net::URLRequestJob {
void CheckDoneStatus();
// net::URLRequestJob methods
- virtual void Start() override;
- virtual bool GetMimeType(std::string* mime_type) const override;
- virtual void GetResponseInfo(net::HttpResponseInfo* info) override;
- virtual bool ReadRawData(net::IOBuffer* buf,
- int buf_size,
- int *bytes_read) override;
+ void Start() override;
+ bool GetMimeType(std::string* mime_type) const override;
+ void GetResponseInfo(net::HttpResponseInfo* info) override;
+ bool ReadRawData(net::IOBuffer* buf, int buf_size, int* bytes_read) override;
static net::URLRequestJob* Factory(net::URLRequest* request,
net::NetworkDelegate* network_delegate,
@@ -56,7 +54,7 @@ class URLRequestSlowDownloadJob : public net::URLRequestJob {
private:
URLRequestSlowDownloadJob(net::URLRequest* request,
net::NetworkDelegate* network_delegate);
- virtual ~URLRequestSlowDownloadJob();
+ ~URLRequestSlowDownloadJob() override;
// Enum indicating where we are in the read after a call to
// FillBufferHelper.
« no previous file with comments | « content/test/net/url_request_abort_on_end_job.h ('k') | content/test/plugin/plugin_arguments_test.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698