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

Unified Diff: net/url_request/url_request_redirect_job.h

Issue 5648004: Add the "virtual" keyword on method overrides that are missing it. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Missing file Created 10 years 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/https_prober.h ('k') | net/url_request/url_request_redirect_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_redirect_job.h
diff --git a/net/url_request/url_request_redirect_job.h b/net/url_request/url_request_redirect_job.h
index 7466cec07fc95cdb9cc3b0c8ccb80c365dafcefb..bc10eeedeedde092a77d62b1dbdc0ed5e087d3e1 100644
--- a/net/url_request/url_request_redirect_job.h
+++ b/net/url_request/url_request_redirect_job.h
@@ -19,10 +19,10 @@ class URLRequestRedirectJob : public URLRequestJob {
URLRequestRedirectJob(net::URLRequest* request, GURL redirect_destination);
virtual void Start();
- bool IsRedirectResponse(GURL* location, int* http_status_code);
+ virtual bool IsRedirectResponse(GURL* location, int* http_status_code);
private:
- ~URLRequestRedirectJob() {}
+ virtual ~URLRequestRedirectJob();
void StartAsync();
« no previous file with comments | « net/url_request/https_prober.h ('k') | net/url_request/url_request_redirect_job.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698