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

Unified Diff: Source/platform/heap/glue/MessageLoopInterruptor.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/heap/Visitor.h ('k') | Source/platform/image-decoders/ImageDecoderTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/heap/glue/MessageLoopInterruptor.h
diff --git a/Source/platform/heap/glue/MessageLoopInterruptor.h b/Source/platform/heap/glue/MessageLoopInterruptor.h
index 176f179078b5ad4c9b3d09a8f33565f26884eb1c..75c9abee7876c9deb21b657c7619c48341592262 100644
--- a/Source/platform/heap/glue/MessageLoopInterruptor.h
+++ b/Source/platform/heap/glue/MessageLoopInterruptor.h
@@ -40,7 +40,7 @@ class MessageLoopInterruptor : public ThreadState::Interruptor {
public:
explicit MessageLoopInterruptor(blink::WebThread* thread) : m_thread(thread) { }
- virtual void requestInterrupt() OVERRIDE
+ virtual void requestInterrupt() override
{
// GCTask has an empty run() method. Its only purpose is to guarantee
// that MessageLoop will have a task to process which will result
@@ -48,14 +48,14 @@ public:
m_thread->postTask(new GCTask);
}
- virtual void clearInterrupt() OVERRIDE { }
+ virtual void clearInterrupt() override { }
private:
class GCTask : public blink::WebThread::Task {
public:
virtual ~GCTask() { }
- virtual void run() OVERRIDE
+ virtual void run() override
{
// Don't do anything here because we don't know if this is
// a nested event loop or not. PendingGCRunner::didProcessTask
« no previous file with comments | « Source/platform/heap/Visitor.h ('k') | Source/platform/image-decoders/ImageDecoderTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698