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

Side by Side Diff: chrome/browser/ui/webui/sync_promo/sync_promo_trial.h

Issue 9730021: Remove experimental sync promo layouts (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: a Created 8 years, 9 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 #ifndef CHROME_BROWSER_UI_WEBUI_SYNC_PROMO_SYNC_PROMO_TRIAL_H_ 5 #ifndef CHROME_BROWSER_UI_WEBUI_SYNC_PROMO_SYNC_PROMO_TRIAL_H_
6 #define CHROME_BROWSER_UI_WEBUI_SYNC_PROMO_SYNC_PROMO_TRIAL_H_ 6 #define CHROME_BROWSER_UI_WEBUI_SYNC_PROMO_SYNC_PROMO_TRIAL_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "chrome/browser/ui/webui/sync_promo/sync_promo_ui.h" 9 #include "chrome/browser/ui/webui/sync_promo/sync_promo_ui.h"
10 10
11 class Profile; 11 class Profile;
12 namespace content { 12 namespace content {
13 class WebUI; 13 class WebUI;
14 } 14 }
15 15
16 namespace sync_promo_trial { 16 namespace sync_promo_trial {
17 17
18 enum StartupOverride {
19 STARTUP_OVERRIDE_NONE,
20 STARTUP_OVERRIDE_SHOW,
21 STARTUP_OVERRIDE_HIDE,
22 };
23
24 // Activate the field trial.
25 void Activate();
26
27 // Returns the start up override value for any currently running sync promo
28 // trials.
29 StartupOverride GetStartupOverrideForCurrentTrial();
30
31 // Records that the user was shown the sync promo for any currently running sync 18 // Records that the user was shown the sync promo for any currently running sync
32 // promo trials. |web_ui| is the web UI where the promo was shown. 19 // promo trials. |web_ui| is the web UI where the promo was shown.
33 void RecordUserShownPromo(content::WebUI* web_ui); 20 void RecordUserShownPromo(content::WebUI* web_ui);
34 21
35 // Records that the sync promo was not shown to the user (when it normally
36 // would have been shown) because of the current trial.
37 void RecordSyncPromoSuppressedForCurrentTrial();
38
39 // Records that the user signed into sync for any currently running sync promo 22 // Records that the user signed into sync for any currently running sync promo
40 // trials. |web_ui| is the web UI where the user signed into sync. 23 // trials. |web_ui| is the web UI where the user signed into sync.
41 void RecordUserSignedIn(content::WebUI* web_ui); 24 void RecordUserSignedIn(content::WebUI* web_ui);
42 25
43 // Returns true if a sync promo trial is running that overrides the sync promo
44 // version. If such a trial is running then on return |version| will contain the
45 // version of the sync promo to show. |version| must not be NULL.
46 bool GetSyncPromoVersionForCurrentTrial(SyncPromoUI::Version* version);
47
48 } // namespace sync_promo_trial 26 } // namespace sync_promo_trial
49 27
50 #endif // CHROME_BROWSER_UI_WEBUI_SYNC_PROMO_SYNC_PROMO_TRIAL_H_ 28 #endif // CHROME_BROWSER_UI_WEBUI_SYNC_PROMO_SYNC_PROMO_TRIAL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698