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

Unified Diff: content/browser/appcache/appcache_response.h

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/appcache/appcache_response.h
diff --git a/content/browser/appcache/appcache_response.h b/content/browser/appcache/appcache_response.h
index 9558478316a11386f2deca9f391643e3daf934a9..4b7a32c6767f7fffc35baeb2bb31eded6e314538 100644
--- a/content/browser/appcache/appcache_response.h
+++ b/content/browser/appcache/appcache_response.h
@@ -134,7 +134,7 @@ class CONTENT_EXPORT AppCacheResponseIO {
class CONTENT_EXPORT AppCacheResponseReader
: public AppCacheResponseIO {
public:
- virtual ~AppCacheResponseReader();
+ ~AppCacheResponseReader() override;
// Reads http info from storage. Always returns the result of the read
// asynchronously through the 'callback'. Returns the number of bytes read
@@ -177,7 +177,7 @@ class CONTENT_EXPORT AppCacheResponseReader
int64 group_id,
AppCacheDiskCacheInterface* disk_cache);
- virtual void OnIOComplete(int result) override;
+ void OnIOComplete(int result) override;
void ContinueReadInfo();
void ContinueReadData();
void OpenEntryIfNeededAndContinue();
@@ -197,7 +197,7 @@ class CONTENT_EXPORT AppCacheResponseReader
class CONTENT_EXPORT AppCacheResponseWriter
: public AppCacheResponseIO {
public:
- virtual ~AppCacheResponseWriter();
+ ~AppCacheResponseWriter() override;
// Writes the http info to storage. Always returns the result of the write
// asynchronously through the 'callback'. Returns the number of bytes written
@@ -243,7 +243,7 @@ class CONTENT_EXPORT AppCacheResponseWriter
SECOND_ATTEMPT
};
- virtual void OnIOComplete(int result) override;
+ void OnIOComplete(int result) override;
void ContinueWriteInfo();
void ContinueWriteData();
void CreateEntryIfNeededAndContinue();
« no previous file with comments | « content/browser/appcache/appcache_request_handler_unittest.cc ('k') | content/browser/appcache/appcache_response.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698