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

Unified Diff: Source/core/testing/NullExecutionContext.cpp

Issue 1232333002: Fix virtual/override/final usage in the rest of Source/core/. (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/core/testing/NullExecutionContext.h ('k') | Source/core/timing/Performance.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/testing/NullExecutionContext.cpp
diff --git a/Source/core/testing/NullExecutionContext.cpp b/Source/core/testing/NullExecutionContext.cpp
index c11a1592d3c9a1efaa5b018f2edee6e0918196ac..1f80b2605e3a2fe9ecae48840e0308c1ea1ae812 100644
--- a/Source/core/testing/NullExecutionContext.cpp
+++ b/Source/core/testing/NullExecutionContext.cpp
@@ -16,10 +16,10 @@ namespace {
class NullEventQueue final : public EventQueue {
public:
NullEventQueue() { }
- virtual ~NullEventQueue() { }
- virtual bool enqueueEvent(PassRefPtrWillBeRawPtr<Event>) override { return true; }
- virtual bool cancelEvent(Event*) override { return true; }
- virtual void close() override { }
+ ~NullEventQueue() override { }
+ bool enqueueEvent(PassRefPtrWillBeRawPtr<Event>) override { return true; }
+ bool cancelEvent(Event*) override { return true; }
+ void close() override { }
};
} // namespace
« no previous file with comments | « Source/core/testing/NullExecutionContext.h ('k') | Source/core/timing/Performance.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698