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

Unified Diff: Source/platform/RefCountedSupplement.h

Issue 131003004: Update platform classes to use OVERRIDE / FINAL when needed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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/platform/PODIntervalTree.h ('k') | Source/platform/SharedTimer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/RefCountedSupplement.h
diff --git a/Source/platform/RefCountedSupplement.h b/Source/platform/RefCountedSupplement.h
index bb6d5e724f6a284c2625509e660824712b1f00ff..6a333ac744e61a73673b030604f7b1972a171559 100644
--- a/Source/platform/RefCountedSupplement.h
+++ b/Source/platform/RefCountedSupplement.h
@@ -40,7 +40,7 @@ public:
virtual ~RefCountedSupplement() { }
virtual void hostDestroyed() { }
- class Wrapper : public Supplement<T> {
+ class Wrapper FINAL : public Supplement<T> {
public:
explicit Wrapper(PassRefPtr<ThisType> wrapped) : m_wrapped(wrapped) { }
virtual ~Wrapper() { m_wrapped->hostDestroyed(); }
« no previous file with comments | « Source/platform/PODIntervalTree.h ('k') | Source/platform/SharedTimer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698