#ifndef CHROME_BROWSER_CHROMEOS_APP_MODE_KIOSK_APP_UPDATE_SERVICE_H_
#define CHROME_BROWSER_CHROMEOS_APP_MODE_KIOSK_APP_UPDATE_SERVICE_H_
#include <string>
#include "base/basictypes.h"
#include "base/compiler_specific.h"
#include "base/memory/singleton.h"
#include "base/timer/timer.h"
#include "chrome/browser/chromeos/system/automatic_reboot_manager_observer.h"
#include "components/keyed_service/content/browser_context_keyed_service_factory.h"
#include "components/keyed_service/core/keyed_service.h"
#include "extensions/browser/update_observer.h"
class Profile;
namespace extensions {
class Extension;
}
namespace chromeos {
namespace system {
class AutomaticRebootManager;
}
class KioskAppUpdateService : public KeyedService,
public extensions::UpdateObserver,
public system::AutomaticRebootManagerObserver {
public:
KioskAppUpdateService(
Profile* profile,
system::AutomaticRebootManager* automatic_reboot_manager);
virtual ~KioskAppUpdateService();
void set_app_id(const std::string& app_id) { app_id_ = app_id; }
std::string get_app_id() const { return app_id_; }
private:
friend class KioskAppUpdateServiceTest;
void StartAppUpdateRestartTimer();
void ForceAppUpdateRestart();
virtual void Shutdown() OVERRIDE;
virtual void OnAppUpdateAvailable(
const extensions::Extension* extension) OVERRIDE;
virtual void OnChromeUpdateAvailable() OVERRIDE {}
virtual void OnRebootScheduled(Reason reason) OVERRIDE;
virtual void WillDestroyAutomaticRebootManager() OVERRIDE;
Profile* profile_;
std::string app_id_;
base::OneShotTimer<KioskAppUpdateService> restart_timer_;
system::AutomaticRebootManager* automatic_reboot_manager_;
DISALLOW_COPY_AND_ASSIGN(KioskAppUpdateService);
};
class KioskAppUpdateServiceFactory : public BrowserContextKeyedServiceFactory {
public:
static KioskAppUpdateService* GetForProfile(Profile* profile);
static KioskAppUpdateServiceFactory* GetInstance();
private:
friend struct DefaultSingletonTraits<KioskAppUpdateServiceFactory>;
KioskAppUpdateServiceFactory();
virtual ~KioskAppUpdateServiceFactory();
virtual KeyedService* BuildServiceInstanceFor(
content::BrowserContext* profile) const OVERRIDE;
};
}
#endif