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

Unified Diff: chrome/browser/net/crl_set_fetcher.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/crl_set_fetcher.h
diff --git a/chrome/browser/net/crl_set_fetcher.h b/chrome/browser/net/crl_set_fetcher.h
index b695863719b855de9c15838e0a21530dc9ba9b65..ee506bce389065283e983483cc107ed9221a3967 100644
--- a/chrome/browser/net/crl_set_fetcher.h
+++ b/chrome/browser/net/crl_set_fetcher.h
@@ -29,7 +29,6 @@ class CRLSetFetcher : public ComponentInstaller,
public base::RefCountedThreadSafe<CRLSetFetcher> {
public:
CRLSetFetcher();
- virtual ~CRLSetFetcher();
void StartInitialLoad(ComponentUpdateService* cus);
@@ -39,6 +38,10 @@ class CRLSetFetcher : public ComponentInstaller,
const FilePath& unpack_path) OVERRIDE;
private:
+ friend class base::RefCountedThreadSafe<CRLSetFetcher>;
+
+ virtual ~CRLSetFetcher();
+
// GetCRLSetFilePath gets the path of the CRL set file in the user data
// dir.
bool GetCRLSetFilePath(FilePath* path) const;

Powered by Google App Engine
This is Rietveld 408576698