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

Unified Diff: chrome/test/testing_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 comments, moved ExtensionPrefStore reference to Profile 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
« chrome/test/testing_profile.h ('K') | « chrome/test/testing_profile.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/testing_profile.cc
diff --git a/chrome/test/testing_profile.cc b/chrome/test/testing_profile.cc
index 243612e3cdc3fc585adb300e9d1bb06fbf767ef4..df930f15cd70bd42234fa7fe2e45dde8d576ba6b 100644
--- a/chrome/test/testing_profile.cc
+++ b/chrome/test/testing_profile.cc
@@ -249,7 +249,7 @@ void TestingProfile::DestroyHistoryService() {
void TestingProfile::CreateTopSites() {
DestroyTopSites();
top_sites_ = new history::TopSites(this);
- FilePath file_name = temp_dir_.path().Append(chrome::kTopSitesFilename);
+ FilePath file_name = GetPath().Append(chrome::kTopSitesFilename);
top_sites_->Init(file_name);
}
@@ -347,9 +347,14 @@ void TestingProfile::UseThemeProvider(BrowserThemeProvider* theme_provider) {
scoped_refptr<ExtensionsService> TestingProfile::CreateExtensionsService(
const CommandLine* command_line,
const FilePath& install_directory) {
+ extension_prefs_.reset(new ExtensionPrefs(
+ this,
+ GetPrefs(),
+ install_directory));
extensions_service_ = new ExtensionsService(this,
command_line,
install_directory,
+ extension_prefs_.get(),
false);
return extensions_service_;
}
@@ -414,6 +419,14 @@ PrefService* TestingProfile::GetPrefs() {
return prefs_.get();
}
+PrefStore* TestingProfile::GetExtensionPrefStore() {
+ return ext_pref_store_;
+}
+
+void TestingProfile::SetExtensionPrefStore(PrefStore* ext_pref_store) {
+ ext_pref_store_ = ext_pref_store;
+}
+
history::TopSites* TestingProfile::GetTopSites() {
return top_sites_.get();
}
« chrome/test/testing_profile.h ('K') | « chrome/test/testing_profile.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698