summaryrefslogtreecommitdiffstats
path: root/chrome/browser/browser_process_impl.cc
diff options
context:
space:
mode:
authorphajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-28 06:50:36 +0000
committerphajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-28 06:50:36 +0000
commit6faa0e0d23ca6fc27ae603063ce23eb018a670cd (patch)
treece8256337ad0632cd3cdb797394ffeb1500e9280 /chrome/browser/browser_process_impl.cc
parent7b441021461106603e4b7769305b8fce7db17294 (diff)
downloadchromium_src-6faa0e0d23ca6fc27ae603063ce23eb018a670cd.zip
chromium_src-6faa0e0d23ca6fc27ae603063ce23eb018a670cd.tar.gz
chromium_src-6faa0e0d23ca6fc27ae603063ce23eb018a670cd.tar.bz2
ImportantFileWriter
Introducing a class for writing important files, preventing their corruption during writing. Switched PrefService to use it. Other classes will be switched in future changesets. TEST=This may affect things using preferences. Make sure that changes in preferences don't get lost, and that you don't get excessive disk activity when changing preferences. http://crbug.com/10618 Review URL: http://codereview.chromium.org/83001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@14717 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/browser_process_impl.cc')
-rw-r--r--chrome/browser/browser_process_impl.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/browser_process_impl.cc b/chrome/browser/browser_process_impl.cc
index 5b7b6b6..085f773 100644
--- a/chrome/browser/browser_process_impl.cc
+++ b/chrome/browser/browser_process_impl.cc
@@ -233,7 +233,7 @@ void BrowserProcessImpl::EndSession() {
metrics->RecordStartOfSessionEnd();
// MetricsService lazily writes to prefs, force it to write now.
- local_state()->SavePersistentPrefs(file_thread());
+ local_state()->SavePersistentPrefs();
}
// We must write that the profile and metrics service shutdown cleanly,
@@ -351,7 +351,7 @@ void BrowserProcessImpl::CreateLocalState() {
FilePath local_state_path;
PathService::Get(chrome::FILE_LOCAL_STATE, &local_state_path);
- local_state_.reset(new PrefService(local_state_path));
+ local_state_.reset(new PrefService(local_state_path, file_thread()));
}
void BrowserProcessImpl::InitBrokerServices(