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

Unified Diff: chrome/common/worker_thread_ticker_unittest.cc

Issue 622373003: Replacing the OVERRIDE with override in chrome/common (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Resolved Error 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 | « chrome/common/service_process_util_posix.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/worker_thread_ticker_unittest.cc
diff --git a/chrome/common/worker_thread_ticker_unittest.cc b/chrome/common/worker_thread_ticker_unittest.cc
index a0aa5ada64da639ff371afa357e0fe5f67eaa2a3..f22702eb4c4d4ebb468d322c1b97085820183031 100644
--- a/chrome/common/worker_thread_ticker_unittest.cc
+++ b/chrome/common/worker_thread_ticker_unittest.cc
@@ -14,7 +14,7 @@ class TestCallback : public WorkerThreadTicker::Callback {
public:
TestCallback() : counter_(0), message_loop_(base::MessageLoop::current()) {}
- virtual void OnTick() OVERRIDE {
+ virtual void OnTick() override {
counter_++;
// Finish the test faster.
@@ -30,7 +30,7 @@ class TestCallback : public WorkerThreadTicker::Callback {
class LongCallback : public WorkerThreadTicker::Callback {
public:
- virtual void OnTick() OVERRIDE {
+ virtual void OnTick() override {
base::PlatformThread::Sleep(base::TimeDelta::FromMilliseconds(1500));
}
};
« no previous file with comments | « chrome/common/service_process_util_posix.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698