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

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

Issue 667943003: Standardize usage of virtual/override/final in content/browser/ (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/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 57bf2aeaa0273d069fbd3ba3d2175af390122f85..e80cac725e7449052e2572e52ed2a6d6bcf8accd 100644
--- a/content/browser/net/view_http_cache_job_factory.cc
+++ b/content/browser/net/view_http_cache_job_factory.cc
@@ -34,16 +34,15 @@ 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{
+ void Start() override;
+ void Kill() override;
+ bool GetMimeType(std::string* mime_type) const override {
return core_->GetMimeType(mime_type);
}
- virtual bool GetCharset(std::string* charset) override{
+ bool GetCharset(std::string* charset) override {
return core_->GetCharset(charset);
}
- virtual bool ReadRawData(net::IOBuffer* buf,
- int buf_size, int *bytes_read) override{
+ bool ReadRawData(net::IOBuffer* buf, int buf_size, int* bytes_read) override {
return core_->ReadRawData(buf, buf_size, bytes_read);
}
@@ -83,7 +82,7 @@ class ViewHttpCacheJob : public net::URLRequestJob {
DISALLOW_COPY_AND_ASSIGN(Core);
};
- virtual ~ViewHttpCacheJob() {}
+ ~ViewHttpCacheJob() override {}
void StartAsync();
void OnStartCompleted();
« no previous file with comments | « content/browser/net/sqlite_persistent_cookie_store_unittest.cc ('k') | content/browser/net_info_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698