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

Unified Diff: net/base/default_server_bound_cert_store_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/default_server_bound_cert_store_unittest.cc
diff --git a/net/base/default_server_bound_cert_store_unittest.cc b/net/base/default_server_bound_cert_store_unittest.cc
index fb94234a0f08e09dc80347ae28c15b9030bd2c07..75ab641687fd74ad9bd04e71ce8d89cfe7dddb1a 100644
--- a/net/base/default_server_bound_cert_store_unittest.cc
+++ b/net/base/default_server_bound_cert_store_unittest.cc
@@ -20,7 +20,6 @@ class MockPersistentStore
: public DefaultServerBoundCertStore::PersistentStore {
public:
MockPersistentStore();
- virtual ~MockPersistentStore();
// DefaultServerBoundCertStore::PersistentStore implementation.
virtual bool Load(
@@ -34,6 +33,8 @@ class MockPersistentStore
virtual void Flush(const base::Closure& completion_task) OVERRIDE;
private:
+ virtual ~MockPersistentStore();
+
typedef std::map<std::string, DefaultServerBoundCertStore::ServerBoundCert>
ServerBoundCertMap;

Powered by Google App Engine
This is Rietveld 408576698