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

Unified Diff: Source/platform/SharedTimer.h

Issue 630853002: Replacing the OVERRIDE with override in third_party/WebKit/Source/platform (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase build fix Created 6 years, 2 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/Task.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 96f12e00a381637def78c2a234baf29020c62833..04629b4b2cb19392aabe16b056a91df646d8563f 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)()) OVERRIDE
+ virtual void setFiredFunction(void (*function)()) override
{
setSharedTimerFiredFunction(function);
}
- virtual void setFireInterval(double interval) OVERRIDE
+ virtual void setFireInterval(double interval) override
{
setSharedTimerFireInterval(interval);
}
- virtual void stop() OVERRIDE
+ virtual void stop() override
{
stopSharedTimer();
}
« no previous file with comments | « Source/platform/RefCountedSupplement.h ('k') | Source/platform/Task.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698