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

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

Issue 10677009: Move command handling and updating off Browser and onto a helper object. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 5 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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/app/chrome_command_ids.h" 14 #include "chrome/app/chrome_command_ids.h"
15 #include "chrome/browser/browser_process.h" 15 #include "chrome/browser/browser_process.h"
16 #include "chrome/browser/managed_mode.h" 16 #include "chrome/browser/managed_mode.h"
17 #include "chrome/browser/prefs/pref_notifier.h" 17 #include "chrome/browser/prefs/pref_notifier.h"
18 #include "chrome/browser/prefs/pref_service.h" 18 #include "chrome/browser/prefs/pref_service.h"
19 #include "chrome/browser/profiles/profile.h" 19 #include "chrome/browser/profiles/profile.h"
20 #include "chrome/browser/profiles/profile_info_cache.h" 20 #include "chrome/browser/profiles/profile_info_cache.h"
21 #include "chrome/browser/profiles/profile_manager.h" 21 #include "chrome/browser/profiles/profile_manager.h"
22 #include "chrome/browser/profiles/profile_metrics.h" 22 #include "chrome/browser/profiles/profile_metrics.h"
23 #include "chrome/browser/sync/profile_sync_service.h" 23 #include "chrome/browser/sync/profile_sync_service.h"
24 #include "chrome/browser/sync/profile_sync_service_factory.h" 24 #include "chrome/browser/sync/profile_sync_service_factory.h"
25 #include "chrome/browser/ui/browser.h" 25 #include "chrome/browser/ui/browser.h"
26 #include "chrome/browser/ui/browser_commands.h"
26 #include "chrome/browser/ui/browser_finder.h" 27 #include "chrome/browser/ui/browser_finder.h"
27 #include "chrome/browser/ui/browser_window.h" 28 #include "chrome/browser/ui/browser_window.h"
28 #include "chrome/browser/ui/chrome_pages.h" 29 #include "chrome/browser/ui/chrome_pages.h"
29 #include "chrome/browser/ui/tab_contents/tab_contents.h" 30 #include "chrome/browser/ui/tab_contents/tab_contents.h"
30 #include "chrome/browser/ui/webui/ntp/new_tab_ui.h" 31 #include "chrome/browser/ui/webui/ntp/new_tab_ui.h"
31 #include "chrome/browser/ui/webui/sync_promo/sync_promo_ui.h" 32 #include "chrome/browser/ui/webui/sync_promo/sync_promo_ui.h"
32 #include "chrome/browser/ui/webui/web_ui_util.h" 33 #include "chrome/browser/ui/webui/web_ui_util.h"
33 #include "chrome/browser/web_resource/promo_resource_service.h" 34 #include "chrome/browser/web_resource/promo_resource_service.h"
34 #include "chrome/common/chrome_notification_types.h" 35 #include "chrome/common/chrome_notification_types.h"
35 #include "chrome/common/pref_names.h" 36 #include "chrome/common/pref_names.h"
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 135
135 if (username.empty()) { 136 if (username.empty()) {
136 #if !defined(OS_ANDROID) 137 #if !defined(OS_ANDROID)
137 // The user isn't signed in, show the sync promo. 138 // The user isn't signed in, show the sync promo.
138 if (SyncPromoUI::ShouldShowSyncPromo(profile)) { 139 if (SyncPromoUI::ShouldShowSyncPromo(profile)) {
139 chrome::ShowSyncSetup(browser, SyncPromoUI::SOURCE_NTP_LINK); 140 chrome::ShowSyncSetup(browser, SyncPromoUI::SOURCE_NTP_LINK);
140 RecordInHistogram(NTP_SIGN_IN_PROMO_CLICKED); 141 RecordInHistogram(NTP_SIGN_IN_PROMO_CLICKED);
141 } 142 }
142 #endif 143 #endif
143 } else if (args->GetSize() == 4 && 144 } else if (args->GetSize() == 4 &&
144 browser->command_updater()->IsCommandEnabled( 145 chrome::IsCommandEnabled(browser, IDC_SHOW_AVATAR_MENU)) {
145 IDC_SHOW_AVATAR_MENU)) {
146 // The user is signed in, show the profiles menu. 146 // The user is signed in, show the profiles menu.
147 double x = 0; 147 double x = 0;
148 double y = 0; 148 double y = 0;
149 double width = 0; 149 double width = 0;
150 double height = 0; 150 double height = 0;
151 bool success = args->GetDouble(0, &x); 151 bool success = args->GetDouble(0, &x);
152 DCHECK(success); 152 DCHECK(success);
153 success = args->GetDouble(1, &y); 153 success = args->GetDouble(1, &y);
154 DCHECK(success); 154 DCHECK(success);
155 success = args->GetDouble(2, &width); 155 success = args->GetDouble(2, &width);
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 l10n_util::GetStringUTF16(IDS_SHORT_PRODUCT_NAME))); 272 l10n_util::GetStringUTF16(IDS_SHORT_PRODUCT_NAME)));
273 values->SetString("login_status_url", 273 values->SetString("login_status_url",
274 hide_sync ? std::string() : chrome::kSyncLearnMoreURL); 274 hide_sync ? std::string() : chrome::kSyncLearnMoreURL);
275 values->SetString("login_status_advanced", 275 values->SetString("login_status_advanced",
276 hide_sync ? string16() : 276 hide_sync ? string16() :
277 l10n_util::GetStringUTF16(IDS_SYNC_PROMO_NTP_BUBBLE_ADVANCED)); 277 l10n_util::GetStringUTF16(IDS_SYNC_PROMO_NTP_BUBBLE_ADVANCED));
278 values->SetString("login_status_dismiss", 278 values->SetString("login_status_dismiss",
279 hide_sync ? string16() : 279 hide_sync ? string16() :
280 l10n_util::GetStringUTF16(IDS_SYNC_PROMO_NTP_BUBBLE_OK)); 280 l10n_util::GetStringUTF16(IDS_SYNC_PROMO_NTP_BUBBLE_OK));
281 } 281 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/toolbar_view.cc ('k') | chrome/browser/ui/webui/options2/chromeos/cros_language_options_handler2.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698