| Index: Source/platform/PODArena.h | 
| diff --git a/Source/platform/PODArena.h b/Source/platform/PODArena.h | 
| index 9b1ed9ad980c5ff0398b3f998bae4fa19cfe9205..604d513cf75a4a4bbba5b394600fc1275c43620b 100644 | 
| --- a/Source/platform/PODArena.h | 
| +++ b/Source/platform/PODArena.h | 
| @@ -42,7 +42,7 @@ namespace blink { | 
| // the objects allocated in this arena are called, but _not_ their | 
| // destructors. | 
|  | 
| -class PODArena FINAL : 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 FINAL { | 
| +    class Chunk final { | 
| WTF_MAKE_NONCOPYABLE(Chunk); | 
| public: | 
| // Allocates a block of memory of the given size from the passed | 
|  |