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

Unified Diff: Source/core/html/HTMLImageLoader.h

Issue 1219013005: Fix virtual/override/final usage in Source/core/html/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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/html/HTMLImageElement.cpp ('k') | Source/core/html/HTMLInputElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLImageLoader.h
diff --git a/Source/core/html/HTMLImageLoader.h b/Source/core/html/HTMLImageLoader.h
index e2aa04319de993ce4b4771d241ac14b83a6432ee..84d4588077bbe587eb8fb1994aedca68b6f4469d 100644
--- a/Source/core/html/HTMLImageLoader.h
+++ b/Source/core/html/HTMLImageLoader.h
@@ -34,17 +34,17 @@ public:
{
return adoptPtrWillBeNoop(new HTMLImageLoader(element));
}
- virtual ~HTMLImageLoader();
+ ~HTMLImageLoader() override;
- virtual void dispatchLoadEvent() override;
+ void dispatchLoadEvent() override;
- virtual void notifyFinished(Resource*) override;
+ void notifyFinished(Resource*) override;
private:
Timer<HTMLImageLoader> m_loadFallbackContentTimer;
void timerFired(Timer<HTMLImageLoader>*);
explicit HTMLImageLoader(Element*);
- virtual void noImageResourceToLoad() override;
+ void noImageResourceToLoad() override;
void ensureFallbackContent();
};
« no previous file with comments | « Source/core/html/HTMLImageElement.cpp ('k') | Source/core/html/HTMLInputElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698