OLD | NEW |
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/sync_promo/sync_promo_handler.h" | 5 #include "chrome/browser/ui/webui/sync_promo/sync_promo_handler.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/bind_helpers.h" | 8 #include "base/bind_helpers.h" |
9 #include "base/metrics/histogram.h" | 9 #include "base/metrics/histogram.h" |
10 #include "base/time.h" | 10 #include "base/time.h" |
11 #include "chrome/browser/prefs/pref_service.h" | 11 #include "chrome/browser/prefs/pref_service.h" |
12 #include "chrome/browser/profiles/profile.h" | 12 #include "chrome/browser/profiles/profile.h" |
13 #include "chrome/browser/sync/profile_sync_service.h" | 13 #include "chrome/browser/sync/profile_sync_service.h" |
14 #include "chrome/browser/sync/profile_sync_service_factory.h" | 14 #include "chrome/browser/sync/profile_sync_service_factory.h" |
15 #include "chrome/browser/ui/browser.h" | 15 #include "chrome/browser/ui/browser.h" |
16 #include "chrome/browser/ui/browser_list.h" | 16 #include "chrome/browser/ui/browser_finder.h" |
17 #include "chrome/browser/ui/tabs/tab_strip_model.h" | 17 #include "chrome/browser/ui/tabs/tab_strip_model.h" |
18 #include "chrome/browser/ui/webui/sync_promo/sync_promo_trial.h" | 18 #include "chrome/browser/ui/webui/sync_promo/sync_promo_trial.h" |
19 #include "chrome/browser/ui/webui/sync_promo/sync_promo_ui.h" | 19 #include "chrome/browser/ui/webui/sync_promo/sync_promo_ui.h" |
20 #include "chrome/common/chrome_notification_types.h" | 20 #include "chrome/common/chrome_notification_types.h" |
21 #include "chrome/common/extensions/extension_constants.h" | 21 #include "chrome/common/extensions/extension_constants.h" |
22 #include "chrome/common/pref_names.h" | 22 #include "chrome/common/pref_names.h" |
23 #include "chrome/common/url_constants.h" | 23 #include "chrome/common/url_constants.h" |
24 #include "content/public/browser/navigation_controller.h" | 24 #include "content/public/browser/navigation_controller.h" |
25 #include "content/public/browser/navigation_entry.h" | 25 #include "content/public/browser/navigation_entry.h" |
26 #include "content/public/browser/notification_details.h" | 26 #include "content/public/browser/notification_details.h" |
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
185 | 185 |
186 // If the user has signed in then set the pref to show them NTP bubble | 186 // If the user has signed in then set the pref to show them NTP bubble |
187 // confirming that they're signed in. | 187 // confirming that they're signed in. |
188 std::string username = prefs_->GetString(prefs::kGoogleServicesUsername); | 188 std::string username = prefs_->GetString(prefs::kGoogleServicesUsername); |
189 if (!username.empty()) | 189 if (!username.empty()) |
190 prefs_->SetBoolean(prefs::kSyncPromoShowNTPBubble, true); | 190 prefs_->SetBoolean(prefs::kSyncPromoShowNTPBubble, true); |
191 | 191 |
192 // If the browser window is being closed then don't try to navigate to another | 192 // If the browser window is being closed then don't try to navigate to another |
193 // URL. This prevents the browser window from flashing during close. | 193 // URL. This prevents the browser window from flashing during close. |
194 Browser* browser = | 194 Browser* browser = |
195 BrowserList::FindBrowserWithWebContents(web_ui()->GetWebContents()); | 195 browser::FindBrowserWithWebContents(web_ui()->GetWebContents()); |
196 if (!browser || !browser->IsAttemptingToCloseBrowser()) { | 196 if (!browser || !browser->IsAttemptingToCloseBrowser()) { |
197 GURL url = SyncPromoUI::GetNextPageURLForSyncPromoURL( | 197 GURL url = SyncPromoUI::GetNextPageURLForSyncPromoURL( |
198 web_ui()->GetWebContents()->GetURL()); | 198 web_ui()->GetWebContents()->GetURL()); |
199 OpenURLParams params( | 199 OpenURLParams params( |
200 url, Referrer(), CURRENT_TAB, content::PAGE_TRANSITION_LINK, false); | 200 url, Referrer(), CURRENT_TAB, content::PAGE_TRANSITION_LINK, false); |
201 web_ui()->GetWebContents()->OpenURL(params); | 201 web_ui()->GetWebContents()->OpenURL(params); |
202 } | 202 } |
203 } | 203 } |
204 | 204 |
205 void SyncPromoHandler::HandleInitializeSyncPromo(const base::ListValue* args) { | 205 void SyncPromoHandler::HandleInitializeSyncPromo(const base::ListValue* args) { |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
274 // Send an enumeration to our single user flow histogram. | 274 // Send an enumeration to our single user flow histogram. |
275 UMA_HISTOGRAM_ENUMERATION("SyncPromo.UserFlow", action, | 275 UMA_HISTOGRAM_ENUMERATION("SyncPromo.UserFlow", action, |
276 SYNC_PROMO_BUCKET_BOUNDARY); | 276 SYNC_PROMO_BUCKET_BOUNDARY); |
277 } | 277 } |
278 | 278 |
279 void SyncPromoHandler::CloseUI() { | 279 void SyncPromoHandler::CloseUI() { |
280 // Callers should not ever try to close the promo UI (should only call | 280 // Callers should not ever try to close the promo UI (should only call |
281 // CloseUI() if the user is already logged in). | 281 // CloseUI() if the user is already logged in). |
282 NOTREACHED() << "Cannot close the promo UI"; | 282 NOTREACHED() << "Cannot close the promo UI"; |
283 } | 283 } |
OLD | NEW |