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

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

Issue 134443002: Update fetch / loader classes to use OVERRIDE / FINAL when needed (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: No OVERRIDE / FINAL in web Created 6 years, 11 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/DocumentResource.h ('k') | Source/core/fetch/FontResource.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/fetch/DocumentResourceReference.h
diff --git a/Source/core/fetch/DocumentResourceReference.h b/Source/core/fetch/DocumentResourceReference.h
index 9e8433583f9259b1a621e4d4ec13cdad96901e82..60f7448818894894046869ef19cf76f218b75524 100644
--- a/Source/core/fetch/DocumentResourceReference.h
+++ b/Source/core/fetch/DocumentResourceReference.h
@@ -31,7 +31,7 @@
namespace WebCore {
-class DocumentResourceReference : public DocumentResourceClient {
+class DocumentResourceReference FINAL : public DocumentResourceClient {
public:
DocumentResourceReference(DocumentResource* document) : m_document(document) { m_document->addClient(this); }
virtual ~DocumentResourceReference() { m_document->removeClient(this); }
« no previous file with comments | « Source/core/fetch/DocumentResource.h ('k') | Source/core/fetch/FontResource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698