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

Unified Diff: webrtc/base/refcountedobject_unittest.cc

Issue 2611663002: Refactor rtc_unittests into several targets. (Closed)
Patch Set: Nit. Created 3 years, 11 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 | « webrtc/base/ratetracker_unittest.cc ('k') | webrtc/base/timeutils_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/base/refcountedobject_unittest.cc
diff --git a/webrtc/base/refcountedobject_unittest.cc b/webrtc/base/refcountedobject_unittest.cc
index 3d8163f73e1e3800cef8919812804f5b704a955a..f6096be8794cc54fe70dd5bfc20b065fcdd1d8ab 100644
--- a/webrtc/base/refcountedobject_unittest.cc
+++ b/webrtc/base/refcountedobject_unittest.cc
@@ -30,7 +30,7 @@ class RefClass : public RefCountInterface {
RefClass() {}
protected:
- virtual ~RefClass() {}
+ ~RefClass() override {}
};
class RefClassWithRvalue : public RefCountInterface {
@@ -38,7 +38,7 @@ class RefClassWithRvalue : public RefCountInterface {
explicit RefClassWithRvalue(std::unique_ptr<A> a) : a_(std::move(a)) {}
protected:
- virtual ~RefClassWithRvalue() {}
+ ~RefClassWithRvalue() override {}
public:
std::unique_ptr<A> a_;
@@ -50,7 +50,7 @@ class RefClassWithMixedValues : public RefCountInterface {
: a_(std::move(a)), b_(b), c_(c) {}
protected:
- virtual ~RefClassWithMixedValues() {}
+ ~RefClassWithMixedValues() override {}
public:
std::unique_ptr<A> a_;
« no previous file with comments | « webrtc/base/ratetracker_unittest.cc ('k') | webrtc/base/timeutils_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698