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

Unified Diff: Source/core/dom/ScriptLoader.h

Issue 1219063013: Fix virtual/override/final usage in Source/core/dom/. (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/dom/RawDataDocumentParser.h ('k') | Source/core/dom/ScriptableDocumentParser.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/ScriptLoader.h
diff --git a/Source/core/dom/ScriptLoader.h b/Source/core/dom/ScriptLoader.h
index 9836c34f34d8f3697e605c8c9690889226f867a8..8505253716d5e551584752e02e86cf453245231a 100644
--- a/Source/core/dom/ScriptLoader.h
+++ b/Source/core/dom/ScriptLoader.h
@@ -44,7 +44,7 @@ public:
return adoptPtrWillBeNoop(new ScriptLoader(element, createdByParser, isEvaluated));
}
- virtual ~ScriptLoader();
+ ~ScriptLoader() override;
DECLARE_VIRTUAL_TRACE();
Element* element() const { return m_element; }
@@ -97,7 +97,7 @@ private:
ScriptLoaderClient* client() const;
// ResourceClient
- virtual void notifyFinished(Resource*) override;
+ void notifyFinished(Resource*) override;
RawPtrWillBeMember<Element> m_element;
ResourcePtr<ScriptResource> m_resource;
« no previous file with comments | « Source/core/dom/RawDataDocumentParser.h ('k') | Source/core/dom/ScriptableDocumentParser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698