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

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

Issue 630853002: Replacing the OVERRIDE with override in third_party/WebKit/Source/platform (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase build fix 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/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 859c7466761430c5d0eb18b2f903431c784240c8..d9d8ad3a45646758fdee6e2e02aac6bf5c424f7d 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
+ virtual void* allocate(size_t size) override
{
void* result = PODArena::FastMallocAllocator::allocate(size);
m_allocatedRegions.append(result);
return result;
}
- virtual void free(void* ptr) OVERRIDE
+ virtual 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