diff options
-rw-r--r-- | chrome/browser/profiles/profile_impl.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/chrome/browser/profiles/profile_impl.cc b/chrome/browser/profiles/profile_impl.cc index c0bf8f6..2c610e19 100644 --- a/chrome/browser/profiles/profile_impl.cc +++ b/chrome/browser/profiles/profile_impl.cc @@ -291,9 +291,12 @@ ProfileImpl::ProfileImpl(const FilePath& path) registrar_.Add(this, NotificationType::THEME_INSTALLED, Source<Profile>(GetOriginalProfile())); +#if !defined(OS_CHROMEOS) // Listen for bookmark model load, to bootstrap the sync service. + // On CrOS sync service will be initialized after sign in. registrar_.Add(this, NotificationType::BOOKMARK_MODEL_LOADED, Source<Profile>(this)); +#endif ssl_config_service_manager_.reset( SSLConfigServiceManager::CreateDefaultManager(this)); |