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

Unified Diff: base/metrics/stats_table_unittest.cc

Issue 10004001: Add virtual and OVERRIDE to base/ implementation files (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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/message_pump_libevent_unittest.cc ('k') | base/observer_list_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/metrics/stats_table_unittest.cc
diff --git a/base/metrics/stats_table_unittest.cc b/base/metrics/stats_table_unittest.cc
index 447769cf029258eb424d5c7914e4c70a927214d4..b8461363e5523acf41f968fee52ead1a912eee13 100644
--- a/base/metrics/stats_table_unittest.cc
+++ b/base/metrics/stats_table_unittest.cc
@@ -77,7 +77,10 @@ class StatsTableThread : public SimpleThread {
StatsTableThread(std::string name, int id)
: SimpleThread(name),
id_(id) {}
- virtual void Run();
+ virtual ~StatsTableThread() {}
Nico 2012/04/05 17:52:34 Why is this needed?
Ryan Sleevi 2012/04/05 19:12:07 D'oh! It isn't. This crept in when I was using an
+
+ virtual void Run() OVERRIDE;
+
private:
int id_;
};
« no previous file with comments | « base/message_pump_libevent_unittest.cc ('k') | base/observer_list_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698