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

Unified Diff: Source/core/fetch/MockImageResourceClient.h

Issue 1229743005: Fix virtual/override/final usage in Source/core/{fetch,loader,streams,xmlhttprequest}/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 5 years, 5 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 | « Source/core/fetch/MemoryCacheTest.cpp ('k') | Source/core/fetch/RawResource.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/fetch/MockImageResourceClient.h
diff --git a/Source/core/fetch/MockImageResourceClient.h b/Source/core/fetch/MockImageResourceClient.h
index 1ac3b8986e1ec7e3a978965f51eeea9f5813254a..3a472ab923150bf0a608c1d6a9a4b5372028c943 100644
--- a/Source/core/fetch/MockImageResourceClient.h
+++ b/Source/core/fetch/MockImageResourceClient.h
@@ -45,13 +45,13 @@ public:
{
}
- virtual ~MockImageResourceClient() { }
- virtual void imageChanged(ImageResource*, const IntRect*) override
+ ~MockImageResourceClient() override {}
+ void imageChanged(ImageResource*, const IntRect*) override
{
m_imageChangedCount++;
}
- virtual void notifyFinished(Resource*) override
+ void notifyFinished(Resource*) override
{
ASSERT_FALSE(m_notifyFinishedCalled);
m_notifyFinishedCalled = true;
« no previous file with comments | « Source/core/fetch/MemoryCacheTest.cpp ('k') | Source/core/fetch/RawResource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698