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

Unified Diff: Source/platform/PODArena.h

Issue 631803002: Replacing the OVERRIDE with override and FINAL with final (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase issue Created 6 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/platform/AsyncMethodRunner.h ('k') | Source/platform/PODIntervalTree.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 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
« no previous file with comments | « Source/platform/AsyncMethodRunner.h ('k') | Source/platform/PODIntervalTree.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698