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

Unified Diff: content/browser/net/view_http_cache_job_factory.cc

Issue 633843002: Replacing the OVERRIDE with override and FINAL with final in content/browser/[dom_storage|gamepad|… (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/browser/net/sqlite_persistent_cookie_store_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/net/view_http_cache_job_factory.cc
diff --git a/content/browser/net/view_http_cache_job_factory.cc b/content/browser/net/view_http_cache_job_factory.cc
index e5fabf0236977fc726793cd72e11f38133350e2f..57bf2aeaa0273d069fbd3ba3d2175af390122f85 100644
--- a/content/browser/net/view_http_cache_job_factory.cc
+++ b/content/browser/net/view_http_cache_job_factory.cc
@@ -34,16 +34,16 @@ class ViewHttpCacheJob : public net::URLRequestJob {
}
// net::URLRequestJob implementation.
- virtual void Start() OVERRIDE;
- virtual void Kill() OVERRIDE;
- virtual bool GetMimeType(std::string* mime_type) const OVERRIDE{
+ virtual void Start() override;
+ virtual void Kill() override;
+ virtual bool GetMimeType(std::string* mime_type) const override{
return core_->GetMimeType(mime_type);
}
- virtual bool GetCharset(std::string* charset) OVERRIDE{
+ virtual bool GetCharset(std::string* charset) override{
return core_->GetCharset(charset);
}
virtual bool ReadRawData(net::IOBuffer* buf,
- int buf_size, int *bytes_read) OVERRIDE{
+ int buf_size, int *bytes_read) override{
return core_->ReadRawData(buf, buf_size, bytes_read);
}
« no previous file with comments | « content/browser/net/sqlite_persistent_cookie_store_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698