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

Unified Diff: mojo/edk/system/waiter_unittest.cc

Issue 668663006: Standardize usage of virtual/override/final in mojo/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 | « mojo/edk/system/waiter_test_utils.h ('k') | mojo/edk/test/test_support_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/edk/system/waiter_unittest.cc
diff --git a/mojo/edk/system/waiter_unittest.cc b/mojo/edk/system/waiter_unittest.cc
index bbbc5b8081efa16a3ca2251f104c26253def9068..859ff0d7056394e7f3490e6aa5dd99259d0fc9ab 100644
--- a/mojo/edk/system/waiter_unittest.cc
+++ b/mojo/edk/system/waiter_unittest.cc
@@ -37,7 +37,7 @@ class WaitingThread : public base::SimpleThread {
waiter_.Init();
}
- virtual ~WaitingThread() { Join(); }
+ ~WaitingThread() override { Join(); }
void WaitUntilDone(MojoResult* result,
uint32_t* context,
@@ -61,7 +61,7 @@ class WaitingThread : public base::SimpleThread {
Waiter* waiter() { return &waiter_; }
private:
- virtual void Run() override {
+ void Run() override {
test::Stopwatch stopwatch;
MojoResult result;
uint32_t context = static_cast<uint32_t>(-1);
« no previous file with comments | « mojo/edk/system/waiter_test_utils.h ('k') | mojo/edk/test/test_support_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698