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

Unified Diff: Source/platform/graphics/Canvas2DLayerManagerTest.cpp

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/graphics/Canvas2DLayerManager.h ('k') | Source/platform/graphics/ContentLayerDelegate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/graphics/Canvas2DLayerManagerTest.cpp
diff --git a/Source/platform/graphics/Canvas2DLayerManagerTest.cpp b/Source/platform/graphics/Canvas2DLayerManagerTest.cpp
index 93e99f9a9820ae37272e81f374899d880340aa5c..baaf421217adc9291a471b5fc3c2fe36f94f7b32 100644
--- a/Source/platform/graphics/Canvas2DLayerManagerTest.cpp
+++ b/Source/platform/graphics/Canvas2DLayerManagerTest.cpp
@@ -72,7 +72,7 @@ public:
{
}
- virtual size_t storageAllocatedForRecording() OVERRIDE
+ virtual size_t storageAllocatedForRecording() override
{
// Because the fake layer has no canvas to query, just
// return status quo. Allocation changes that would normally be
@@ -86,7 +86,7 @@ public:
m_freeableBytes = size;
}
- virtual size_t freeMemoryIfPossible(size_t size) OVERRIDE
+ virtual size_t freeMemoryIfPossible(size_t size) override
{
m_freeMemoryIfPossibleCount++;
size_t bytesFreed = size < m_freeableBytes ? size : m_freeableBytes;
@@ -96,7 +96,7 @@ public:
return bytesFreed;
}
- virtual void flush() OVERRIDE
+ virtual void flush() override
{
flushedDrawCommands();
m_freeableBytes = bytesAllocated();
@@ -257,7 +257,7 @@ protected:
m_skipCommands = skipCommands;
}
- virtual void run() OVERRIDE
+ virtual void run() override
{
m_test->doDeferredFrameTestTask(m_layer, m_skipCommands);
}
« no previous file with comments | « Source/platform/graphics/Canvas2DLayerManager.h ('k') | Source/platform/graphics/ContentLayerDelegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698