| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_CHROMEOS_APP_MODE_KIOSK_APP_UPDATE_SERVICE_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_APP_MODE_KIOSK_APP_UPDATE_SERVICE_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_APP_MODE_KIOSK_APP_UPDATE_SERVICE_H_ | 6 #define CHROME_BROWSER_CHROMEOS_APP_MODE_KIOSK_APP_UPDATE_SERVICE_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 class KioskAppUpdateService : public KeyedService, | 33 class KioskAppUpdateService : public KeyedService, |
| 34 public extensions::UpdateObserver, | 34 public extensions::UpdateObserver, |
| 35 public system::AutomaticRebootManagerObserver, | 35 public system::AutomaticRebootManagerObserver, |
| 36 public KioskAppManagerObserver { | 36 public KioskAppManagerObserver { |
| 37 public: | 37 public: |
| 38 KioskAppUpdateService( | 38 KioskAppUpdateService( |
| 39 Profile* profile, | 39 Profile* profile, |
| 40 system::AutomaticRebootManager* automatic_reboot_manager); | 40 system::AutomaticRebootManager* automatic_reboot_manager); |
| 41 virtual ~KioskAppUpdateService(); | 41 virtual ~KioskAppUpdateService(); |
| 42 | 42 |
| 43 void set_app_id(const std::string& app_id) { app_id_ = app_id; } | 43 void Init(const std::string& app_id); |
| 44 |
| 44 std::string get_app_id() const { return app_id_; } | 45 std::string get_app_id() const { return app_id_; } |
| 45 | 46 |
| 46 private: | 47 private: |
| 47 friend class KioskAppUpdateServiceTest; | 48 friend class KioskAppUpdateServiceTest; |
| 48 | 49 |
| 49 void StartAppUpdateRestartTimer(); | 50 void StartAppUpdateRestartTimer(); |
| 50 void ForceAppUpdateRestart(); | 51 void ForceAppUpdateRestart(); |
| 51 | 52 |
| 52 // KeyedService overrides: | 53 // KeyedService overrides: |
| 53 virtual void Shutdown() override; | 54 virtual void Shutdown() override; |
| 54 | 55 |
| 55 // extensions::UpdateObserver overrides: | 56 // extensions::UpdateObserver overrides: |
| 56 virtual void OnAppUpdateAvailable( | 57 virtual void OnAppUpdateAvailable( |
| 57 const extensions::Extension* extension) override; | 58 const extensions::Extension* extension) override; |
| 58 virtual void OnChromeUpdateAvailable() override {} | 59 virtual void OnChromeUpdateAvailable() override {} |
| 59 | 60 |
| 60 // system::AutomaticRebootManagerObserver overrides: | 61 // system::AutomaticRebootManagerObserver overrides: |
| 61 virtual void OnRebootScheduled(Reason reason) override; | 62 virtual void OnRebootRequested(Reason reason) override; |
| 62 virtual void WillDestroyAutomaticRebootManager() override; | 63 virtual void WillDestroyAutomaticRebootManager() override; |
| 63 | 64 |
| 64 // KioskAppManagerObserver overrides: | 65 // KioskAppManagerObserver overrides: |
| 65 virtual void OnKioskAppCacheUpdated(const std::string& app_id) override; | 66 virtual void OnKioskAppCacheUpdated(const std::string& app_id) override; |
| 66 | 67 |
| 67 Profile* profile_; | 68 Profile* profile_; |
| 68 std::string app_id_; | 69 std::string app_id_; |
| 69 | 70 |
| 70 // After we detect an upgrade we start a one-short timer to force restart. | 71 // After we detect an upgrade we start a one-short timer to force restart. |
| 71 base::OneShotTimer<KioskAppUpdateService> restart_timer_; | 72 base::OneShotTimer<KioskAppUpdateService> restart_timer_; |
| (...skipping 21 matching lines...) Expand all Loading... |
| 93 virtual ~KioskAppUpdateServiceFactory(); | 94 virtual ~KioskAppUpdateServiceFactory(); |
| 94 | 95 |
| 95 // BrowserContextKeyedServiceFactory overrides: | 96 // BrowserContextKeyedServiceFactory overrides: |
| 96 virtual KeyedService* BuildServiceInstanceFor( | 97 virtual KeyedService* BuildServiceInstanceFor( |
| 97 content::BrowserContext* profile) const override; | 98 content::BrowserContext* profile) const override; |
| 98 }; | 99 }; |
| 99 | 100 |
| 100 } // namespace chromeos | 101 } // namespace chromeos |
| 101 | 102 |
| 102 #endif // CHROME_BROWSER_CHROMEOS_APP_MODE_KIOSK_APP_UPDATE_SERVICE_H_ | 103 #endif // CHROME_BROWSER_CHROMEOS_APP_MODE_KIOSK_APP_UPDATE_SERVICE_H_ |
| OLD | NEW |