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

Unified Diff: net/base/host_resolver_impl_unittest.cc

Issue 10066045: RefCounted types should not have public destructors, net/ (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
Index: net/base/host_resolver_impl_unittest.cc
diff --git a/net/base/host_resolver_impl_unittest.cc b/net/base/host_resolver_impl_unittest.cc
index fcf9d8540a6f835531fb588cca2a441e49c2fe88..4262324ae8a2e960d3cbe290339bed82b7a5514b 100644
--- a/net/base/host_resolver_impl_unittest.cc
+++ b/net/base/host_resolver_impl_unittest.cc
@@ -297,6 +297,9 @@ class EchoingHostResolverProc : public HostResolverProc {
host_resolver_flags,
addrlist, os_error);
}
+
+ private:
+ virtual ~EchoingHostResolverProc() {}
};
// Using LookupAttemptHostResolverProc simulate very long lookups, and control

Powered by Google App Engine
This is Rietveld 408576698