Chromium Code Reviews| Index: chrome/browser/ui/webui/sync_promo/sync_promo_trial.h |
| diff --git a/chrome/browser/ui/webui/sync_promo/sync_promo_trial.h b/chrome/browser/ui/webui/sync_promo/sync_promo_trial.h |
| index 19ab4bb713ee25788691636c53c5155191a2290a..1a002f7ea5eb5123f48dcea894e209cb56293c17 100644 |
| --- a/chrome/browser/ui/webui/sync_promo/sync_promo_trial.h |
| +++ b/chrome/browser/ui/webui/sync_promo/sync_promo_trial.h |
| @@ -6,6 +6,7 @@ |
| #define CHROME_BROWSER_UI_WEBUI_SYNC_PROMO_SYNC_PROMO_TRIAL_H_ |
| #include "base/basictypes.h" |
| +#include "chrome/browser/ui/webui/sync_promo/sync_promo_ui.h" |
|
Dan Beam
2012/01/30 18:10:05
convert to forward, possibly?
sail
2012/01/30 21:52:36
there's no easy way to forward declare enums
Dan Beam
2012/01/31 00:31:39
Ah, OK.
|
| class Profile; |
| namespace content { |
| @@ -38,7 +39,7 @@ void RecordUserSignedIn(content::WebUI* web_ui); |
| // Returns true if a sync promo trial is running that overrides the sync promo |
| // version. If such a trial is running then on return |version| will contain the |
| // version of the sync promo to show. |version| must not be NULL. |
| -bool GetSyncPromoVersionForCurrentTrial(int* version); |
| +bool GetSyncPromoVersionForCurrentTrial(SyncPromoUI::Version* version); |
| } // namespace sync_promo_trial |