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

Unified Diff: content/browser/loader/layered_resource_handler.h

Issue 638503002: Replacing the OVERRIDE with override and FINAL with final in content/browser/[download|… (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
Index: content/browser/loader/layered_resource_handler.h
diff --git a/content/browser/loader/layered_resource_handler.h b/content/browser/loader/layered_resource_handler.h
index 3a092c3d748c5fcd35d9f151e1033abad761a05f..9f888dfc376d7f87e2b869ca3e542c8d976c75c1 100644
--- a/content/browser/loader/layered_resource_handler.h
+++ b/content/browser/loader/layered_resource_handler.h
@@ -24,24 +24,24 @@ class CONTENT_EXPORT LayeredResourceHandler : public ResourceHandler {
virtual ~LayeredResourceHandler();
// ResourceHandler implementation:
- virtual void SetController(ResourceController* controller) OVERRIDE;
- virtual bool OnUploadProgress(uint64 position, uint64 size) OVERRIDE;
+ virtual void SetController(ResourceController* controller) override;
+ virtual bool OnUploadProgress(uint64 position, uint64 size) override;
virtual bool OnRequestRedirected(const net::RedirectInfo& redirect_info,
ResourceResponse* response,
- bool* defer) OVERRIDE;
+ bool* defer) override;
virtual bool OnResponseStarted(ResourceResponse* response,
- bool* defer) OVERRIDE;
- virtual bool OnWillStart(const GURL& url, bool* defer) OVERRIDE;
- virtual bool OnBeforeNetworkStart(const GURL& url, bool* defer) OVERRIDE;
+ bool* defer) override;
+ virtual bool OnWillStart(const GURL& url, bool* defer) override;
+ virtual bool OnBeforeNetworkStart(const GURL& url, bool* defer) override;
virtual bool OnWillRead(scoped_refptr<net::IOBuffer>* buf,
int* buf_size,
- int min_size) OVERRIDE;
+ int min_size) override;
virtual bool OnReadCompleted(int bytes_read,
- bool* defer) OVERRIDE;
+ bool* defer) override;
virtual void OnResponseCompleted(const net::URLRequestStatus& status,
const std::string& security_info,
- bool* defer) OVERRIDE;
- virtual void OnDataDownloaded(int bytes_downloaded) OVERRIDE;
+ bool* defer) override;
+ virtual void OnDataDownloaded(int bytes_downloaded) override;
scoped_ptr<ResourceHandler> next_handler_;
};
« no previous file with comments | « content/browser/loader/detachable_resource_handler.h ('k') | content/browser/loader/power_save_block_resource_throttle.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698