summaryrefslogtreecommitdiffstats
path: root/base/memory/weak_ptr_unittest.cc
diff options
context:
space:
mode:
authorrsleevi@chromium.org <rsleevi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-04-06 03:53:02 +0000
committerrsleevi@chromium.org <rsleevi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-04-06 03:53:02 +0000
commit441061813c0a5c13392fa1ceff763639cccf3233 (patch)
tree7e4b83ec66c53ac08f22725ec1b2ca6d632213f6 /base/memory/weak_ptr_unittest.cc
parentf493d9f1ce7f520fbbe4fbe4bce282242941783c (diff)
downloadchromium_src-441061813c0a5c13392fa1ceff763639cccf3233.zip
chromium_src-441061813c0a5c13392fa1ceff763639cccf3233.tar.gz
chromium_src-441061813c0a5c13392fa1ceff763639cccf3233.tar.bz2
Add virtual and OVERRIDE to base/ implementation files
BUG=none TEST=compiles Review URL: http://codereview.chromium.org/10004001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@131098 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/memory/weak_ptr_unittest.cc')
-rw-r--r--base/memory/weak_ptr_unittest.cc6
1 files changed, 2 insertions, 4 deletions
diff --git a/base/memory/weak_ptr_unittest.cc b/base/memory/weak_ptr_unittest.cc
index 8f42664..f2e53ef 100644
--- a/base/memory/weak_ptr_unittest.cc
+++ b/base/memory/weak_ptr_unittest.cc
@@ -44,11 +44,9 @@ struct Consumer { WeakPtr<Producer> producer; };
// and delete objects on a background thread.
class BackgroundThread : public Thread {
public:
- BackgroundThread()
- : Thread("owner_thread") {
- }
+ BackgroundThread() : Thread("owner_thread") {}
- ~BackgroundThread() {
+ virtual ~BackgroundThread() {
Stop();
}