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

Unified Diff: Source/platform/Timer.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/TestingPlatformSupport.h ('k') | Source/platform/TimerTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/Timer.h
diff --git a/Source/platform/Timer.h b/Source/platform/Timer.h
index 1e4bc6ca3e958a37a9b5374ed02bde9ebca5fb35..832b51e082a34e8fd17298949d19c01f66ac093c 100644
--- a/Source/platform/Timer.h
+++ b/Source/platform/Timer.h
@@ -155,13 +155,13 @@ public:
}
protected:
- virtual void fired() override
+ void fired() override
{
(m_object->*m_function)(this);
}
NO_LAZY_SWEEP_SANITIZE_ADDRESS
- virtual bool canFire() const override
+ bool canFire() const override
{
// Oilpan: if a timer fires while Oilpan heaps are being lazily
// swept, it is not safe to proceed if the object is about to
« no previous file with comments | « Source/platform/TestingPlatformSupport.h ('k') | Source/platform/TimerTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698