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

Unified Diff: chrome/browser/net/sqlite_server_bound_cert_store.h

Issue 10071032: RefCounted types should not have public destructors, chrome/browser/ part 1 (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: chrome/browser/net/sqlite_server_bound_cert_store.h
diff --git a/chrome/browser/net/sqlite_server_bound_cert_store.h b/chrome/browser/net/sqlite_server_bound_cert_store.h
index da363a0b502e74c0e6ce50aecba44b37e2d800db..136d8d846a178eff11bc918e7c120e96d159916e 100644
--- a/chrome/browser/net/sqlite_server_bound_cert_store.h
+++ b/chrome/browser/net/sqlite_server_bound_cert_store.h
@@ -21,7 +21,6 @@ class SQLiteServerBoundCertStore
: public net::DefaultServerBoundCertStore::PersistentStore {
public:
explicit SQLiteServerBoundCertStore(const FilePath& path);
- virtual ~SQLiteServerBoundCertStore();
// net::DefaultServerBoundCertStore::PersistentStore implementation.
virtual bool Load(
@@ -37,6 +36,8 @@ class SQLiteServerBoundCertStore
private:
class Backend;
+ virtual ~SQLiteServerBoundCertStore();
+
scoped_refptr<Backend> backend_;
DISALLOW_COPY_AND_ASSIGN(SQLiteServerBoundCertStore);

Powered by Google App Engine
This is Rietveld 408576698