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

Unified Diff: Source/core/fetch/MemoryCacheTest.cpp

Issue 631223002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/[fetch|fileapi] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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/core/fetch/MemoryCache.h ('k') | Source/core/fetch/MockImageResourceClient.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/fetch/MemoryCacheTest.cpp
diff --git a/Source/core/fetch/MemoryCacheTest.cpp b/Source/core/fetch/MemoryCacheTest.cpp
index a81a35b65f332a9fe078e943d05a658f4a27baf4..20f7f978502230b8e40cc185d7af1b7320172c4c 100644
--- a/Source/core/fetch/MemoryCacheTest.cpp
+++ b/Source/core/fetch/MemoryCacheTest.cpp
@@ -58,7 +58,7 @@ public:
}
protected:
- virtual void destroyDecodedDataIfPossible() OVERRIDE
+ virtual void destroyDecodedDataIfPossible() override
{
setDecodedSize(0);
}
@@ -193,7 +193,7 @@ TEST_F(MemoryCacheTest, LiveResourceEvictionAtEndOfTask)
, m_dead(dead)
{ }
- virtual void run() OVERRIDE
+ virtual void run() override
{
// The resource size has to be nonzero for this test to be meaningful, but
// we do not rely on it having any particular value.
@@ -226,7 +226,7 @@ TEST_F(MemoryCacheTest, LiveResourceEvictionAtEndOfTask)
Task2(unsigned liveSizeWithoutDecode)
: m_liveSizeWithoutDecode(liveSizeWithoutDecode) { }
- virtual void run() OVERRIDE
+ virtual void run() override
{
// Next task: now, the live resource was evicted.
ASSERT_EQ(0u, memoryCache()->deadSize());
« no previous file with comments | « Source/core/fetch/MemoryCache.h ('k') | Source/core/fetch/MockImageResourceClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698