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

Unified Diff: Source/core/loader/ImageLoader.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/loader/FrameLoaderClient.h ('k') | Source/core/loader/LinkLoader.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/loader/ImageLoader.h
diff --git a/Source/core/loader/ImageLoader.h b/Source/core/loader/ImageLoader.h
index c7709465165829e76b333dc7baf0e24e83c11e24..4c21261fe805f5db3806cf7b2321bdad6f4dd862 100644
--- a/Source/core/loader/ImageLoader.h
+++ b/Source/core/loader/ImageLoader.h
@@ -61,7 +61,7 @@ typedef EventSender<ImageLoader> ImageEventSender;
class CORE_EXPORT ImageLoader : public NoBaseWillBeGarbageCollectedFinalized<ImageLoader>, public ImageResourceClient {
public:
explicit ImageLoader(Element*);
- virtual ~ImageLoader();
+ ~ImageLoader() override;
// We must run the destructor in the eager sweeping phase and call
// m_image->removeClient(this). Otherwise, the ImageResource can invoke
@@ -118,9 +118,9 @@ public:
void addClient(ImageLoaderClient*);
void removeClient(ImageLoaderClient*);
- virtual bool getImageAnimationPolicy(ImageResource*, ImageAnimationPolicy&) override final;
+ bool getImageAnimationPolicy(ImageResource*, ImageAnimationPolicy&) final;
protected:
- virtual void notifyFinished(Resource*) override;
+ void notifyFinished(Resource*) override;
private:
class Task;
« no previous file with comments | « Source/core/loader/FrameLoaderClient.h ('k') | Source/core/loader/LinkLoader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698