| 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" |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 SyncPromoHandler::SyncPromoHandler(ProfileManager* profile_manager) | 68 SyncPromoHandler::SyncPromoHandler(ProfileManager* profile_manager) |
| 69 : SyncSetupHandler(profile_manager), | 69 : SyncSetupHandler(profile_manager), |
| 70 prefs_(NULL), | 70 prefs_(NULL), |
| 71 window_already_closed_(false) { | 71 window_already_closed_(false) { |
| 72 } | 72 } |
| 73 | 73 |
| 74 SyncPromoHandler::~SyncPromoHandler() { | 74 SyncPromoHandler::~SyncPromoHandler() { |
| 75 } | 75 } |
| 76 | 76 |
| 77 // static | 77 // static |
| 78 void SyncPromoHandler::RegisterUserPrefs(PrefService* prefs) { | 78 void SyncPromoHandler::RegisterUserPrefs(PrefServiceSyncable* prefs) { |
| 79 prefs->RegisterIntegerPref(prefs::kSyncPromoViewCount, 0, | 79 prefs->RegisterIntegerPref(prefs::kSyncPromoViewCount, 0, |
| 80 PrefService::UNSYNCABLE_PREF); | 80 PrefServiceSyncable::UNSYNCABLE_PREF); |
| 81 prefs->RegisterBooleanPref(prefs::kSyncPromoShowNTPBubble, false, | 81 prefs->RegisterBooleanPref(prefs::kSyncPromoShowNTPBubble, false, |
| 82 PrefService::UNSYNCABLE_PREF); | 82 PrefServiceSyncable::UNSYNCABLE_PREF); |
| 83 prefs->RegisterStringPref(prefs::kSyncPromoErrorMessage, std::string(), | 83 prefs->RegisterStringPref(prefs::kSyncPromoErrorMessage, std::string(), |
| 84 PrefService::UNSYNCABLE_PREF); | 84 PrefServiceSyncable::UNSYNCABLE_PREF); |
| 85 } | 85 } |
| 86 | 86 |
| 87 void SyncPromoHandler::RegisterMessages() { | 87 void SyncPromoHandler::RegisterMessages() { |
| 88 // Keep a reference to the preferences service for convenience and it's | 88 // Keep a reference to the preferences service for convenience and it's |
| 89 // probably a little faster that getting it via Profile::FromWebUI() every | 89 // probably a little faster that getting it via Profile::FromWebUI() every |
| 90 // time we need to interact with preferences. | 90 // time we need to interact with preferences. |
| 91 prefs_ = Profile::FromWebUI(web_ui())->GetPrefs(); | 91 prefs_ = Profile::FromWebUI(web_ui())->GetPrefs(); |
| 92 DCHECK(prefs_); | 92 DCHECK(prefs_); |
| 93 // Ignore events from view-source:chrome://signin. | 93 // Ignore events from view-source:chrome://signin. |
| 94 if (!web_ui()->GetWebContents()->GetController().GetActiveEntry()-> | 94 if (!web_ui()->GetWebContents()->GetController().GetActiveEntry()-> |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 282 // Send an enumeration to our single user flow histogram. | 282 // Send an enumeration to our single user flow histogram. |
| 283 UMA_HISTOGRAM_ENUMERATION("SyncPromo.UserFlow", action, | 283 UMA_HISTOGRAM_ENUMERATION("SyncPromo.UserFlow", action, |
| 284 SYNC_PROMO_BUCKET_BOUNDARY); | 284 SYNC_PROMO_BUCKET_BOUNDARY); |
| 285 } | 285 } |
| 286 | 286 |
| 287 void SyncPromoHandler::CloseUI() { | 287 void SyncPromoHandler::CloseUI() { |
| 288 // Callers should not ever try to close the promo UI (should only call | 288 // Callers should not ever try to close the promo UI (should only call |
| 289 // CloseUI() if the user is already logged in). | 289 // CloseUI() if the user is already logged in). |
| 290 NOTREACHED() << "Cannot close the promo UI"; | 290 NOTREACHED() << "Cannot close the promo UI"; |
| 291 } | 291 } |
| OLD | NEW |