Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(58)

Side by Side Diff: chrome/browser/ui/webui/ntp/ntp_login_handler.cc

Issue 9169096: Remove a bunch of GetProfileSyncService callers to use the new factory. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rm todos Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/ui/webui/ntp/ntp_login_handler.h" 5 #include "chrome/browser/ui/webui/ntp/ntp_login_handler.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/bind_helpers.h" 10 #include "base/bind_helpers.h"
11 #include "base/metrics/histogram.h" 11 #include "base/metrics/histogram.h"
12 #include "base/utf_string_conversions.h" 12 #include "base/utf_string_conversions.h"
13 #include "base/values.h" 13 #include "base/values.h"
14 #include "chrome/browser/browser_process.h" 14 #include "chrome/browser/browser_process.h"
15 #include "chrome/browser/google/google_util.h" 15 #include "chrome/browser/google/google_util.h"
16 #include "chrome/browser/prefs/pref_notifier.h" 16 #include "chrome/browser/prefs/pref_notifier.h"
17 #include "chrome/browser/prefs/pref_service.h" 17 #include "chrome/browser/prefs/pref_service.h"
18 #include "chrome/browser/profiles/profile.h" 18 #include "chrome/browser/profiles/profile.h"
19 #include "chrome/browser/profiles/profile_info_cache.h" 19 #include "chrome/browser/profiles/profile_info_cache.h"
20 #include "chrome/browser/profiles/profile_manager.h" 20 #include "chrome/browser/profiles/profile_manager.h"
21 #include "chrome/browser/profiles/profile_metrics.h" 21 #include "chrome/browser/profiles/profile_metrics.h"
22 #include "chrome/browser/sync/profile_sync_service.h" 22 #include "chrome/browser/sync/profile_sync_service.h"
23 #include "chrome/browser/sync/profile_sync_service_factory.h"
23 #include "chrome/browser/sync/sync_setup_flow.h" 24 #include "chrome/browser/sync/sync_setup_flow.h"
24 #include "chrome/browser/ui/browser.h" 25 #include "chrome/browser/ui/browser.h"
25 #include "chrome/browser/ui/browser_list.h" 26 #include "chrome/browser/ui/browser_list.h"
26 #include "chrome/browser/ui/browser_window.h" 27 #include "chrome/browser/ui/browser_window.h"
27 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h" 28 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h"
28 #include "chrome/browser/ui/webui/sync_promo/sync_promo_ui.h" 29 #include "chrome/browser/ui/webui/sync_promo/sync_promo_ui.h"
29 #include "chrome/browser/ui/webui/web_ui_util.h" 30 #include "chrome/browser/ui/webui/web_ui_util.h"
30 #include "chrome/browser/web_resource/promo_resource_service.h" 31 #include "chrome/browser/web_resource/promo_resource_service.h"
31 #include "chrome/common/chrome_notification_types.h" 32 #include "chrome/common/chrome_notification_types.h"
32 #include "chrome/common/pref_names.h" 33 #include "chrome/common/pref_names.h"
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 NTP_SIGN_IN_PROMO_BUCKET_BOUNDARY); 168 NTP_SIGN_IN_PROMO_BUCKET_BOUNDARY);
168 } 169 }
169 } 170 }
170 171
171 void NTPLoginHandler::HandleLoginMessageSeen(const ListValue* args) { 172 void NTPLoginHandler::HandleLoginMessageSeen(const ListValue* args) {
172 Profile::FromWebUI(web_ui())->GetPrefs()->SetBoolean( 173 Profile::FromWebUI(web_ui())->GetPrefs()->SetBoolean(
173 prefs::kSyncPromoShowNTPBubble, false); 174 prefs::kSyncPromoShowNTPBubble, false);
174 } 175 }
175 176
176 void NTPLoginHandler::HandleShowAdvancedLoginUI(const ListValue* args) { 177 void NTPLoginHandler::HandleShowAdvancedLoginUI(const ListValue* args) {
177 Profile::FromWebUI(web_ui())->GetProfileSyncService()->ShowConfigure(false); 178 ProfileSyncServiceFactory::GetInstance()->GetForProfile(
179 Profile::FromWebUI(web_ui()))->ShowConfigure(false);
178 } 180 }
179 181
180 void NTPLoginHandler::UpdateLogin() { 182 void NTPLoginHandler::UpdateLogin() {
181 Profile* profile = Profile::FromWebUI(web_ui()); 183 Profile* profile = Profile::FromWebUI(web_ui());
182 std::string username = profile->GetPrefs()->GetString( 184 std::string username = profile->GetPrefs()->GetString(
183 prefs::kGoogleServicesUsername); 185 prefs::kGoogleServicesUsername);
184 186
185 string16 header, sub_header; 187 string16 header, sub_header;
186 std::string icon_url; 188 std::string icon_url;
187 if (!username.empty()) { 189 if (!username.empty()) {
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 l10n_util::GetStringUTF16(IDS_SHORT_PRODUCT_NAME))); 255 l10n_util::GetStringUTF16(IDS_SHORT_PRODUCT_NAME)));
254 values->SetString("login_status_url", 256 values->SetString("login_status_url",
255 google_util::StringAppendGoogleLocaleParam(chrome::kSyncLearnMoreURL)); 257 google_util::StringAppendGoogleLocaleParam(chrome::kSyncLearnMoreURL));
256 values->SetString("login_status_learn_more", 258 values->SetString("login_status_learn_more",
257 l10n_util::GetStringUTF16(IDS_LEARN_MORE)); 259 l10n_util::GetStringUTF16(IDS_LEARN_MORE));
258 values->SetString("login_status_advanced", 260 values->SetString("login_status_advanced",
259 l10n_util::GetStringUTF16(IDS_SYNC_PROMO_NTP_BUBBLE_ADVANCED)); 261 l10n_util::GetStringUTF16(IDS_SYNC_PROMO_NTP_BUBBLE_ADVANCED));
260 values->SetString("login_status_dismiss", 262 values->SetString("login_status_dismiss",
261 l10n_util::GetStringUTF16(IDS_SYNC_PROMO_NTP_BUBBLE_OK)); 263 l10n_util::GetStringUTF16(IDS_SYNC_PROMO_NTP_BUBBLE_OK));
262 } 264 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/ntp/new_tab_page_sync_handler.cc ('k') | chrome/browser/ui/webui/ntp/ntp_resource_cache.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698