diff options
Diffstat (limited to 'chrome/browser/ui')
6 files changed, 26 insertions, 12 deletions
diff --git a/chrome/browser/ui/webui/sessions_ui.cc b/chrome/browser/ui/webui/sessions_ui.cc index 9e5665f..3de0f37 100644 --- a/chrome/browser/ui/webui/sessions_ui.cc +++ b/chrome/browser/ui/webui/sessions_ui.cc @@ -126,10 +126,10 @@ browser_sync::SessionModelAssociator* SessionsDOMHandler::GetModelAssociator() { // We only want to get the model associator if there is one, and it is done // syncing sessions. Profile* profile = Profile::FromWebUI(web_ui()); - if (!profile->HasProfileSyncService()) + ProfileSyncServiceFactory* f = ProfileSyncServiceFactory::GetInstance(); + if (f->HasProfileSyncService(profile)) return NULL; - ProfileSyncService* service(ProfileSyncServiceFactory:: - GetInstance()->GetForProfile(profile)); + ProfileSyncService* service = f->GetForProfile(profile); if (!service->ShouldPushChanges()) return NULL; return service->GetSessionModelAssociator(); diff --git a/chrome/browser/ui/webui/sync_internals_ui.cc b/chrome/browser/ui/webui/sync_internals_ui.cc index 5edb0ad..8fafa3f 100644 --- a/chrome/browser/ui/webui/sync_internals_ui.cc +++ b/chrome/browser/ui/webui/sync_internals_ui.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -16,6 +16,7 @@ #include "chrome/browser/sync/js/js_controller.h" #include "chrome/browser/sync/js/js_event_details.h" #include "chrome/browser/sync/profile_sync_service.h" +#include "chrome/browser/sync/profile_sync_service_factory.h" #include "chrome/browser/sync/sync_ui_util.h" #include "chrome/browser/sync/util/weak_handle.h" #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h" @@ -68,7 +69,8 @@ namespace { // Gets the ProfileSyncService of the underlying original profile. // May return NULL (e.g., if sync is disabled on the command line). ProfileSyncService* GetProfileSyncService(Profile* profile) { - return profile->GetOriginalProfile()->GetProfileSyncService(); + return ProfileSyncServiceFactory::GetInstance()->GetForProfile( + profile->GetOriginalProfile()); } } // namespace diff --git a/chrome/browser/ui/webui/sync_promo/sync_promo_handler.cc b/chrome/browser/ui/webui/sync_promo/sync_promo_handler.cc index fc984ba..90029ea 100644 --- a/chrome/browser/ui/webui/sync_promo/sync_promo_handler.cc +++ b/chrome/browser/ui/webui/sync_promo/sync_promo_handler.cc @@ -11,6 +11,7 @@ #include "chrome/browser/prefs/pref_service.h" #include "chrome/browser/profiles/profile.h" #include "chrome/browser/sync/profile_sync_service.h" +#include "chrome/browser/sync/profile_sync_service_factory.h" #include "chrome/browser/sync/sync_setup_flow.h" #include "chrome/browser/tabs/tab_strip_model.h" #include "chrome/browser/ui/browser.h" @@ -190,7 +191,8 @@ void SyncPromoHandler::ShowSetupUI() { // StepWizardForShowSetupUI and ShowSetupUI. // TODO(binji): Move this function back and fix the focus the right way. ProfileSyncService* service = - Profile::FromWebUI(web_ui())->GetProfileSyncService(); + ProfileSyncServiceFactory::GetInstance()->GetForProfile( + Profile::FromWebUI(web_ui())); service->get_wizard().Step(SyncSetupWizard::GetLoginState()); } diff --git a/chrome/browser/ui/webui/sync_promo/sync_promo_handler2.cc b/chrome/browser/ui/webui/sync_promo/sync_promo_handler2.cc index 1ec58e8..b638cdc 100644 --- a/chrome/browser/ui/webui/sync_promo/sync_promo_handler2.cc +++ b/chrome/browser/ui/webui/sync_promo/sync_promo_handler2.cc @@ -11,6 +11,7 @@ #include "chrome/browser/prefs/pref_service.h" #include "chrome/browser/profiles/profile.h" #include "chrome/browser/sync/profile_sync_service.h" +#include "chrome/browser/sync/profile_sync_service_factory.h" #include "chrome/browser/sync/sync_setup_flow.h" #include "chrome/browser/tabs/tab_strip_model.h" #include "chrome/browser/ui/browser.h" @@ -182,7 +183,8 @@ void SyncPromoHandler2::Observe(int type, void SyncPromoHandler2::StepWizardForShowSetupUI() { ProfileSyncService* service = - Profile::FromWebUI(web_ui_)->GetProfileSyncService(); + ProfileSyncServiceFactory::GetInstance()->GetForProfile( + Profile::FromWebUI(web_ui_)); service->get_wizard().Step(SyncSetupWizard::GetLoginState()); } diff --git a/chrome/browser/ui/webui/sync_promo/sync_promo_ui.cc b/chrome/browser/ui/webui/sync_promo/sync_promo_ui.cc index cf94b75..f3d56bb 100644 --- a/chrome/browser/ui/webui/sync_promo/sync_promo_ui.cc +++ b/chrome/browser/ui/webui/sync_promo/sync_promo_ui.cc @@ -14,6 +14,7 @@ #include "chrome/browser/profiles/profile_info_cache.h" #include "chrome/browser/profiles/profile_manager.h" #include "chrome/browser/sync/profile_sync_service.h" +#include "chrome/browser/sync/profile_sync_service_factory.h" #include "chrome/browser/ui/webui/chrome_url_data_manager.h" #include "chrome/browser/ui/webui/chrome_web_ui_data_source.h" #include "chrome/browser/ui/webui/options/core_options_handler.h" @@ -151,7 +152,8 @@ bool SyncPromoUI::ShouldShowSyncPromo(Profile* profile) { // If the user is already signed into sync then don't show the promo. ProfileSyncService* service = - profile->GetOriginalProfile()->GetProfileSyncService(); + ProfileSyncServiceFactory::GetInstance()->GetForProfile( + profile->GetOriginalProfile()); if (!service || service->HasSyncSetupCompleted()) return false; diff --git a/chrome/browser/ui/webui/sync_setup_handler.cc b/chrome/browser/ui/webui/sync_setup_handler.cc index 5b4a9a6..a57d69d 100644 --- a/chrome/browser/ui/webui/sync_setup_handler.cc +++ b/chrome/browser/ui/webui/sync_setup_handler.cc @@ -17,6 +17,7 @@ #include "chrome/browser/profiles/profile_metrics.h" #include "chrome/browser/signin/signin_manager.h" #include "chrome/browser/sync/profile_sync_service.h" +#include "chrome/browser/sync/profile_sync_service_factory.h" #include "chrome/browser/sync/protocol/service_constants.h" #include "chrome/browser/sync/sync_setup_flow.h" #include "chrome/browser/sync/util/oauth.h" @@ -446,7 +447,9 @@ void SyncSetupHandler::ShowSetupDone(const string16& user) { SyncPromoUI::SetUserSkippedSyncPromo(Profile::FromWebUI(web_ui())); Profile* profile = Profile::FromWebUI(web_ui()); - ProfileSyncService* service = profile->GetProfileSyncService(); + ProfileSyncService* service = + ProfileSyncServiceFactory::GetInstance()->GetForProfile( + profile); if (!service->HasSyncSetupCompleted()) { FilePath profile_file_path = profile->GetPath(); ProfileMetrics::LogProfileSyncSignIn(profile_file_path); @@ -561,7 +564,8 @@ void SyncSetupHandler::HandleShowErrorUI(const ListValue* args) { DCHECK(!flow_); Profile* profile = Profile::FromWebUI(web_ui()); - ProfileSyncService* service = profile->GetProfileSyncService(); + ProfileSyncService* service = ProfileSyncServiceFactory::GetInstance()-> + GetForProfile(profile); DCHECK(service); service->ShowErrorUI(); @@ -589,7 +593,8 @@ void SyncSetupHandler::OpenSyncSetup() { DCHECK(!flow_); Profile* profile = Profile::FromWebUI(web_ui()); - ProfileSyncService* service = profile->GetProfileSyncService(); + ProfileSyncService* service = ProfileSyncServiceFactory::GetInstance()-> + GetForProfile(profile); if (!service) { // If there's no sync service, the user tried to manually invoke a syncSetup // URL, but sync features are disabled. We need to close the overlay for @@ -623,7 +628,8 @@ void SyncSetupHandler::OpenSyncSetup() { bool SyncSetupHandler::FocusExistingWizard() { Profile* profile = Profile::FromWebUI(web_ui()); - ProfileSyncService* service = profile->GetProfileSyncService(); + ProfileSyncService* service = ProfileSyncServiceFactory::GetInstance()-> + GetForProfile(profile); if (!service) return false; |