Wrap Sparkle's minimum interface with C++.

This commit is contained in:
Cheng Zhao 2013-06-02 20:23:04 +08:00
parent 312744b863
commit 08dbdd9718
6 changed files with 188 additions and 0 deletions

34
browser/auto_updater.h Normal file
View file

@ -0,0 +1,34 @@
// Copyright (c) 2013 GitHub, Inc. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ATOM_BROWSER_AUTO_UPDATER_H_
#define ATOM_BROWSER_AUTO_UPDATER_H_
#include "base/basictypes.h"
namespace auto_updater {
class AutoUpdaterDelegate;
class AutoUpdater {
public:
// Gets/Sets the delegate.
static AutoUpdaterDelegate* GetDelegate();
static void SetDelegate(AutoUpdaterDelegate* delegate);
static void Init();
static void SetAutomaticallyChecksForUpdates(bool yes);
static void SetAutomaticallyDownloadsUpdates(bool yes);
static void CheckForUpdatesInBackground();
private:
static AutoUpdaterDelegate* delegate_;
DISALLOW_IMPLICIT_CONSTRUCTORS(AutoUpdater);
};
} // namespace auto_updater
#endif // ATOM_BROWSER_AUTO_UPDATER_H_