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

Unified Diff: Source/platform/SharedTimer.h

Issue 131003004: Update platform classes to use OVERRIDE / FINAL when needed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 11 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/RefCountedSupplement.h ('k') | Source/platform/Timer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/SharedTimer.h
diff --git a/Source/platform/SharedTimer.h b/Source/platform/SharedTimer.h
index e5386fd5cbf69c9ef40ca80bbfabaefb70186cf7..2d5a1c10df440cde77d8804cd9398afb10912edd 100644
--- a/Source/platform/SharedTimer.h
+++ b/Source/platform/SharedTimer.h
@@ -54,17 +54,17 @@ PLATFORM_EXPORT void stopSharedTimer();
class PLATFORM_EXPORT MainThreadSharedTimer : public SharedTimer {
public:
- virtual void setFiredFunction(void (*function)())
+ virtual void setFiredFunction(void (*function)()) OVERRIDE
{
setSharedTimerFiredFunction(function);
}
- virtual void setFireInterval(double interval)
+ virtual void setFireInterval(double interval) OVERRIDE
{
setSharedTimerFireInterval(interval);
}
- virtual void stop()
+ virtual void stop() OVERRIDE
{
stopSharedTimer();
}
« no previous file with comments | « Source/platform/RefCountedSupplement.h ('k') | Source/platform/Timer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698