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

Unified Diff: base/threading/non_thread_safe_unittest.cc

Issue 10004001: Add virtual and OVERRIDE to base/ implementation files (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Win Fix -> Missing header Created 8 years, 8 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_suite.cc ('k') | base/threading/sequenced_worker_pool_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 3236278347a885be8146bc8a5d1bf2945b2cda94..c72eec0c3c45491f695315591398f06f8e1d77fe 100644
--- a/base/threading/non_thread_safe_unittest.cc
+++ b/base/threading/non_thread_safe_unittest.cc
@@ -42,7 +42,7 @@ class CallDoStuffOnThread : public SimpleThread {
non_thread_safe_class_(non_thread_safe_class) {
}
- virtual void Run() {
+ virtual void Run() OVERRIDE {
non_thread_safe_class_->DoStuff();
}
@@ -60,7 +60,7 @@ class DeleteNonThreadSafeClassOnThread : public SimpleThread {
non_thread_safe_class_(non_thread_safe_class) {
}
- virtual void Run() {
+ virtual void Run() OVERRIDE {
non_thread_safe_class_.reset();
}
« no previous file with comments | « base/test/test_suite.cc ('k') | base/threading/sequenced_worker_pool_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698