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

Unified Diff: Source/platform/testing/ArenaTestHelpers.h

Issue 1213003004: Fix virtual/override/final usage in Source/platform/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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/scroll/ScrollbarThemeOverlayMock.h ('k') | Source/platform/text/DateTimeFormatTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/testing/ArenaTestHelpers.h
diff --git a/Source/platform/testing/ArenaTestHelpers.h b/Source/platform/testing/ArenaTestHelpers.h
index 19d3b81c483a8a7b64ce56b6284e78b8b4ee12f2..ad473626f5a9fd62c8363bd8050503f1ac3eaa07 100644
--- a/Source/platform/testing/ArenaTestHelpers.h
+++ b/Source/platform/testing/ArenaTestHelpers.h
@@ -44,14 +44,14 @@ public:
return adoptRef(new TrackedAllocator);
}
- virtual void* allocate(size_t size) override
+ void* allocate(size_t size) override
{
void* result = PODArena::FastMallocAllocator::allocate(size);
m_allocatedRegions.append(result);
return result;
}
- virtual void free(void* ptr) override
+ void free(void* ptr) override
{
size_t slot = m_allocatedRegions.find(ptr);
ASSERT_NE(slot, kNotFound);
« no previous file with comments | « Source/platform/scroll/ScrollbarThemeOverlayMock.h ('k') | Source/platform/text/DateTimeFormatTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698