| Index: chrome/browser/browser_process_impl.cc
|
| diff --git a/chrome/browser/browser_process_impl.cc b/chrome/browser/browser_process_impl.cc
|
| index 5b7b6b65121981e68b366d5365c49521bd5b00be..085f773c030775439345cfa0a035a69c87a37a80 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(
|
|
|