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

Unified Diff: Source/platform/heap/glue/MessageLoopInterruptor.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/heap/MarkingVisitor.h ('k') | Source/platform/image-decoders/bmp/BMPImageDecoder.h » ('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 721efce284429d4c6d55babec561c06a56ec64b5..5a37c722acdec049bb8c745087015ae2b6acd3b4 100644
--- a/Source/platform/heap/glue/MessageLoopInterruptor.h
+++ b/Source/platform/heap/glue/MessageLoopInterruptor.h
@@ -41,7 +41,7 @@ class MessageLoopInterruptor : public ThreadState::Interruptor {
public:
explicit MessageLoopInterruptor(WebThread* thread) : m_thread(thread) { }
- virtual void requestInterrupt() override
+ 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
@@ -54,7 +54,7 @@ private:
public:
virtual ~GCTask() { }
- virtual void run() override
+ 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/MarkingVisitor.h ('k') | Source/platform/image-decoders/bmp/BMPImageDecoder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698