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

Unified Diff: Source/core/frame/DOMTimer.h

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/frame/Console.h ('k') | Source/core/frame/DOMWindow.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/frame/DOMTimer.h
diff --git a/Source/core/frame/DOMTimer.h b/Source/core/frame/DOMTimer.h
index 508a1841884529871b964b78685b9a1f6be0da7d..866ac0bc5c93461d8df4eb1086f1da2f5cb3aaab 100644
--- a/Source/core/frame/DOMTimer.h
+++ b/Source/core/frame/DOMTimer.h
@@ -47,10 +47,10 @@ public:
static int install(ExecutionContext*, PassOwnPtrWillBeRawPtr<ScheduledAction>, int timeout, bool singleShot);
static void removeByID(ExecutionContext*, int timeoutID);
- virtual ~DOMTimer();
+ ~DOMTimer() override;
// ActiveDOMObject
- virtual void stop() override;
+ void stop() override;
// The following are essentially constants. All intervals are in seconds.
static double hiddenPageAlignmentInterval();
@@ -74,10 +74,10 @@ private:
}
DOMTimer(ExecutionContext*, PassOwnPtrWillBeRawPtr<ScheduledAction>, int interval, bool singleShot, int timeoutID);
- virtual void fired() override;
+ void fired() override;
// Retuns timer fire time rounded to the next multiple of timer alignment interval.
- virtual double alignedFireTime(double) const override;
+ double alignedFireTime(double) const override;
int m_timeoutID;
int m_nestingLevel;
« no previous file with comments | « Source/core/frame/Console.h ('k') | Source/core/frame/DOMWindow.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698