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

Unified Diff: chrome/browser/policy/configuration_policy_pref_store.h

Issue 10068036: RefCounted types should not have public destructors, chrome/browser/ part 5 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Win fix 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/policy/configuration_policy_pref_store.h
diff --git a/chrome/browser/policy/configuration_policy_pref_store.h b/chrome/browser/policy/configuration_policy_pref_store.h
index bbd13be2718771443d647f39d9d31cd115506544..f3d33a47a45fae975c15103abfa6eaa305e8e572 100644
--- a/chrome/browser/policy/configuration_policy_pref_store.h
+++ b/chrome/browser/policy/configuration_policy_pref_store.h
@@ -30,7 +30,6 @@ class ConfigurationPolicyPrefStore
// Does not take ownership of |service|. Only policies of the given |level|
// will be mapped.
ConfigurationPolicyPrefStore(PolicyService* service, PolicyLevel level);
- virtual ~ConfigurationPolicyPrefStore();
// PrefStore methods:
virtual void AddObserver(PrefStore::Observer* observer) OVERRIDE;
@@ -56,6 +55,8 @@ class ConfigurationPolicyPrefStore
static ConfigurationPolicyPrefStore* CreateRecommendedPolicyPrefStore();
private:
+ virtual ~ConfigurationPolicyPrefStore();
+
// Refreshes policy information, rereading policy from the policy service and
// sending out change notifications as appropriate.
void Refresh();
« no previous file with comments | « chrome/browser/password_manager/password_store_win.cc ('k') | chrome/browser/policy/configuration_policy_pref_store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698