2014-10-31 18:17:05 +00:00
|
|
|
// Copyright (c) 2013 GitHub, Inc.
|
2014-04-25 09:49:37 +00:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2013-06-02 12:23:04 +00:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
#ifndef ATOM_BROWSER_AUTO_UPDATER_H_
|
|
|
|
#define ATOM_BROWSER_AUTO_UPDATER_H_
|
|
|
|
|
2013-06-03 02:34:42 +00:00
|
|
|
#include <string>
|
|
|
|
|
2016-03-08 04:38:49 +00:00
|
|
|
#include "base/macros.h"
|
2016-03-09 11:03:42 +00:00
|
|
|
#include "build/build_config.h"
|
2013-06-02 12:23:04 +00:00
|
|
|
|
2015-10-23 07:40:56 +00:00
|
|
|
namespace base {
|
|
|
|
class Time;
|
|
|
|
}
|
|
|
|
|
2013-06-02 12:23:04 +00:00
|
|
|
namespace auto_updater {
|
|
|
|
|
2015-10-23 07:40:56 +00:00
|
|
|
class Delegate {
|
|
|
|
public:
|
|
|
|
// An error happened.
|
|
|
|
virtual void OnError(const std::string& error) {}
|
|
|
|
|
|
|
|
// Checking to see if there is an update
|
|
|
|
virtual void OnCheckingForUpdate() {}
|
|
|
|
|
|
|
|
// There is an update available and it is being downloaded
|
|
|
|
virtual void OnUpdateAvailable() {}
|
|
|
|
|
|
|
|
// There is no available update.
|
|
|
|
virtual void OnUpdateNotAvailable() {}
|
|
|
|
|
|
|
|
// There is a new update which has been downloaded.
|
|
|
|
virtual void OnUpdateDownloaded(const std::string& release_notes,
|
|
|
|
const std::string& release_name,
|
|
|
|
const base::Time& release_date,
|
|
|
|
const std::string& update_url) {}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual ~Delegate() {}
|
|
|
|
};
|
2013-06-02 12:23:04 +00:00
|
|
|
|
|
|
|
class AutoUpdater {
|
|
|
|
public:
|
|
|
|
// Gets/Sets the delegate.
|
2015-10-23 07:40:56 +00:00
|
|
|
static Delegate* GetDelegate();
|
|
|
|
static void SetDelegate(Delegate* delegate);
|
2013-06-02 12:23:04 +00:00
|
|
|
|
2013-06-03 02:34:42 +00:00
|
|
|
static void SetFeedURL(const std::string& url);
|
|
|
|
static void CheckForUpdates();
|
2015-10-23 07:40:56 +00:00
|
|
|
static void QuitAndInstall();
|
2013-06-02 12:23:04 +00:00
|
|
|
|
|
|
|
private:
|
2015-10-23 07:40:56 +00:00
|
|
|
static Delegate* delegate_;
|
2013-06-02 12:23:04 +00:00
|
|
|
|
|
|
|
DISALLOW_IMPLICIT_CONSTRUCTORS(AutoUpdater);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace auto_updater
|
|
|
|
|
|
|
|
#endif // ATOM_BROWSER_AUTO_UPDATER_H_
|