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

Unified Diff: base/threading/non_thread_safe_unittest.cc

Issue 611153004: replace OVERRIDE and FINAL with override and final in base/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: CC_ -> BASE_ 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 | « base/test/test_support_android.cc ('k') | base/threading/platform_thread_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/threading/non_thread_safe_unittest.cc
diff --git a/base/threading/non_thread_safe_unittest.cc b/base/threading/non_thread_safe_unittest.cc
index 8a82a637ab781f9e694ef5b23fd4c640b759d60e..2bd76292a82791287960a6ec23046b208a691294 100644
--- a/base/threading/non_thread_safe_unittest.cc
+++ b/base/threading/non_thread_safe_unittest.cc
@@ -52,7 +52,7 @@ class CallDoStuffOnThread : public SimpleThread {
non_thread_safe_class_(non_thread_safe_class) {
}
- virtual void Run() OVERRIDE {
+ virtual void Run() override {
non_thread_safe_class_->DoStuff();
}
@@ -71,7 +71,7 @@ class DeleteNonThreadSafeClassOnThread : public SimpleThread {
non_thread_safe_class_(non_thread_safe_class) {
}
- virtual void Run() OVERRIDE {
+ virtual void Run() override {
non_thread_safe_class_.reset();
}
« no previous file with comments | « base/test/test_support_android.cc ('k') | base/threading/platform_thread_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698