| Index: chrome/browser/chrome_browser_main.cc
|
| diff --git a/chrome/browser/chrome_browser_main.cc b/chrome/browser/chrome_browser_main.cc
|
| index eb0cf4f30c8fb1a4bb321659c332e3e300f3173a..51500ea5eb9abec4995a26b2f513233dc09c4766 100644
|
| --- a/chrome/browser/chrome_browser_main.cc
|
| +++ b/chrome/browser/chrome_browser_main.cc
|
| @@ -1665,13 +1665,8 @@ int ChromeBrowserMainParts::PreMainMessageLoopRunImpl() {
|
| // Request new variations seed information from server.
|
| chrome_variations::VariationsService* variations_service =
|
| browser_process_->variations_service();
|
| - if (variations_service) {
|
| - variations_service->StartRepeatedVariationsSeedFetch();
|
| -
|
| -#if defined(OS_WIN)
|
| - variations_service->StartGoogleUpdateRegistrySync();
|
| -#endif // defined(OS_WIN)
|
| - }
|
| + if (variations_service)
|
| + variations_service->PerformPreMainMessageLoopStartup();
|
|
|
| translate::TranslateDownloadManager::RequestLanguageList(
|
| profile_->GetPrefs());
|
|
|