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

Unified Diff: Source/platform/scheduler/SchedulerTest.cpp

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/scheduler/Scheduler.cpp ('k') | Source/platform/scroll/ScrollAnimatorNone.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/scheduler/SchedulerTest.cpp
diff --git a/Source/platform/scheduler/SchedulerTest.cpp b/Source/platform/scheduler/SchedulerTest.cpp
index 2777d53c6d9c88dee9e76c07280368526cd54af5..aa708556f5ee3b221c503c5a912dbde5a83681fc 100644
--- a/Source/platform/scheduler/SchedulerTest.cpp
+++ b/Source/platform/scheduler/SchedulerTest.cpp
@@ -34,33 +34,33 @@ public:
class TestMainThread : public blink::WebThread {
public:
// blink::WebThread implementation.
- virtual void postTask(Task* task) OVERRIDE
+ virtual void postTask(Task* task) override
{
m_pendingTasks.append(adoptPtr(task));
}
- virtual void postDelayedTask(Task* task, long long delayMs) OVERRIDE
+ virtual void postDelayedTask(Task* task, long long delayMs) override
{
ASSERT_NOT_REACHED();
}
- virtual bool isCurrentThread() const OVERRIDE
+ virtual bool isCurrentThread() const override
{
return true;
}
- virtual blink::PlatformThreadId threadId() const OVERRIDE
+ virtual blink::PlatformThreadId threadId() const override
{
ASSERT_NOT_REACHED();
return 0;
}
- virtual void enterRunLoop() OVERRIDE
+ virtual void enterRunLoop() override
{
ASSERT_NOT_REACHED();
}
- virtual void exitRunLoop() OVERRIDE
+ virtual void exitRunLoop() override
{
ASSERT_NOT_REACHED();
}
@@ -92,17 +92,17 @@ public:
}
// blink::Platform implementation.
- virtual blink::WebThread* currentThread() OVERRIDE
+ virtual blink::WebThread* currentThread() override
{
return &m_mainThread;
}
- virtual void setSharedTimerFiredFunction(SharedTimerFunction timerFunction) OVERRIDE
+ virtual void setSharedTimerFiredFunction(SharedTimerFunction timerFunction) override
{
m_sharedTimerFunction = timerFunction;
}
- virtual double monotonicallyIncreasingTime() OVERRIDE
+ virtual double monotonicallyIncreasingTime() override
{
return m_monotonicallyIncreasingTime;
}
@@ -171,12 +171,12 @@ public:
Scheduler::shutdown();
}
- virtual void SetUp() OVERRIDE
+ virtual void SetUp() override
{
m_scheduler->enterSchedulerPolicy(SchedulerForTest::Normal);
}
- virtual void TearDown() OVERRIDE
+ virtual void TearDown() override
{
// If the Scheduler hasn't been shut down then explicitly flush the tasks.
if (Scheduler::shared())
« no previous file with comments | « Source/platform/scheduler/Scheduler.cpp ('k') | Source/platform/scroll/ScrollAnimatorNone.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698