#ifndef CHROME_BROWSER_CHROMEOS_LOGIN_MULTI_PROFILE_FIRST_RUN_NOTIFICATION_H_
#define CHROME_BROWSER_CHROMEOS_LOGIN_MULTI_PROFILE_FIRST_RUN_NOTIFICATION_H_
#include "base/basictypes.h"
#include "base/memory/weak_ptr.h"
namespace user_prefs {
class PrefRegistrySyncable;
}
class Profile;
namespace chromeos {
class MultiProfileFirstRunNotification {
public:
MultiProfileFirstRunNotification();
~MultiProfileFirstRunNotification();
static void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry);
void UserProfilePrepared(Profile* user_profile);
private:
void OnDismissed(Profile* user_profile);
base::WeakPtrFactory<MultiProfileFirstRunNotification> weak_ptr_factory_;
DISALLOW_COPY_AND_ASSIGN(MultiProfileFirstRunNotification);
};
}
#endif