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

Unified Diff: Source/platform/PODArena.h

Issue 47613002: Use FINAL macro for classes whose virtual destructor was removed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 2 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/modules/speech/SpeechSynthesisVoice.h ('k') | Source/platform/audio/Biquad.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/PODArena.h
diff --git a/Source/platform/PODArena.h b/Source/platform/PODArena.h
index da9d4460fd9977d74b57d828b802bcb4c2db0c47..ad6852e5c617790456ef46bdf047a2ddbeeaad64 100644
--- a/Source/platform/PODArena.h
+++ b/Source/platform/PODArena.h
@@ -42,7 +42,7 @@ namespace WebCore {
// the objects allocated in this arena are called, but _not_ their
// destructors.
-class PODArena : public RefCounted<PODArena> {
+class PODArena FINAL : public RefCounted<PODArena> {
public:
// The arena is configured with an allocator, which is responsible
// for allocating and freeing chunks of memory at a time.
@@ -146,7 +146,7 @@ protected:
}
// Manages a chunk of memory and individual allocations out of it.
- class Chunk {
+ class Chunk FINAL {
WTF_MAKE_NONCOPYABLE(Chunk);
public:
// Allocates a block of memory of the given size from the passed
« no previous file with comments | « Source/modules/speech/SpeechSynthesisVoice.h ('k') | Source/platform/audio/Biquad.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698