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

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: Implementation fixes 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..6647eeee3261637c4b412375cb1a4f3f424d50e7 100644
--- a/chrome/browser/net/sqlite_server_bound_cert_store.h
+++ b/chrome/browser/net/sqlite_server_bound_cert_store.h
@@ -21,9 +21,8 @@ class SQLiteServerBoundCertStore
: public net::DefaultServerBoundCertStore::PersistentStore {
public:
explicit SQLiteServerBoundCertStore(const FilePath& path);
- virtual ~SQLiteServerBoundCertStore();
- // net::DefaultServerBoundCertStore::PersistentStore implementation.
+ // net::DefaultServerBoundCertStore::PersistentStore:
virtual bool Load(
std::vector<net::DefaultServerBoundCertStore::ServerBoundCert*>* certs)
OVERRIDE;
@@ -34,6 +33,9 @@ class SQLiteServerBoundCertStore
virtual void SetClearLocalStateOnExit(bool clear_local_state) OVERRIDE;
virtual void Flush(const base::Closure& completion_task) OVERRIDE;
+ protected:
+ virtual ~SQLiteServerBoundCertStore();
+
private:
class Backend;
« no previous file with comments | « chrome/browser/net/sqlite_persistent_cookie_store_unittest.cc ('k') | chrome/browser/net/sqlite_server_bound_cert_store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698