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

Unified Diff: base/process_util_posix.cc

Issue 10834060: base: Add missing "virtual" keyword and OVERRIDE to some methods. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 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/message_pump_glib_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/process_util_posix.cc
diff --git a/base/process_util_posix.cc b/base/process_util_posix.cc
index 018296c5628b341310b395f548cb961df35e8df0..e148f11e58ecfa13a446ac96941ef4dbbfc79adb 100644
--- a/base/process_util_posix.cc
+++ b/base/process_util_posix.cc
@@ -1268,7 +1268,8 @@ class BackgroundReaper : public PlatformThread::Delegate {
timeout_(timeout) {
}
- void ThreadMain() {
+ // Overridden from PlatformThread::Delegate:
+ virtual void ThreadMain() OVERRIDE {
WaitForChildToDie();
delete this;
}
« no previous file with comments | « base/message_pump_glib_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698