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

Unified Diff: chrome/browser/prefs/pref_member.cc

Issue 5915004: Introduce incognito preference settings. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed nits and crasher on Mac Created 9 years, 11 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/prefs/pref_member.cc
diff --git a/chrome/browser/prefs/pref_member.cc b/chrome/browser/prefs/pref_member.cc
index cc143846cf710e4604c324148a1a737e62a5eac6..0b3848602783e3681968a2cd3ed32deea81333fc 100644
--- a/chrome/browser/prefs/pref_member.cc
+++ b/chrome/browser/prefs/pref_member.cc
@@ -18,7 +18,7 @@ PrefMemberBase::PrefMemberBase()
}
PrefMemberBase::~PrefMemberBase() {
- if (!pref_name_.empty())
+ if (prefs_ && !pref_name_.empty())
prefs_->RemovePrefObserver(pref_name_.c_str(), this);
}
@@ -37,6 +37,13 @@ void PrefMemberBase::Init(const char* pref_name, PrefService* prefs,
prefs_->AddPrefObserver(pref_name, this);
}
+void PrefMemberBase::Destroy() {
+ if (prefs_) {
+ prefs_->RemovePrefObserver(pref_name_.c_str(), this);
+ prefs_ = NULL;
+ }
+}
+
bool PrefMemberBase::IsManaged() const {
DCHECK(!pref_name_.empty());
const PrefService::Preference* pref =

Powered by Google App Engine
This is Rietveld 408576698