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