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

Unified Diff: chrome/browser/profile.cc

Issue 5213002: Fix for Bug 50726 "Save extension list and "winning" prefs from extensions" (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Addressed Mattias' comments Created 10 years, 1 month 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/profile.cc
diff --git a/chrome/browser/profile.cc b/chrome/browser/profile.cc
index c03483aff6a172cbc24572555454bb4f2cc28eb4..7bb8aabf82aef138c667905e0add0ee4f5985128 100644
--- a/chrome/browser/profile.cc
+++ b/chrome/browser/profile.cc
@@ -306,6 +306,14 @@ class OffTheRecordProfileImpl : public Profile,
return profile_->GetPrefs();
}
+ virtual PrefStore* GetExtensionPrefStore() {
+ return profile_->GetExtensionPrefStore();
+ }
+
+ virtual void SetExtensionPrefStore(PrefStore* ext_pref_store) {
+ return profile_->SetExtensionPrefStore(ext_pref_store);
+ }
+
virtual TemplateURLModel* GetTemplateURLModel() {
return profile_->GetTemplateURLModel();
}

Powered by Google App Engine
This is Rietveld 408576698