2013-06-02 12:23:04 +00:00
|
|
|
// 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.
|
|
|
|
|
|
|
|
#include "browser/auto_updater_delegate.h"
|
|
|
|
|
|
|
|
#include "base/callback.h"
|
|
|
|
|
|
|
|
namespace auto_updater {
|
|
|
|
|
|
|
|
void AutoUpdaterDelegate::WillInstallUpdate(const std::string& version,
|
|
|
|
const base::Closure& install) {
|
|
|
|
install.Run();
|
|
|
|
}
|
|
|
|
|
2013-06-03 13:51:46 +00:00
|
|
|
void AutoUpdaterDelegate::ReadyForUpdateOnQuit(
|
|
|
|
const std::string& version,
|
|
|
|
const base::Closure& quit_and_install) {
|
|
|
|
}
|
|
|
|
|
2013-06-02 12:23:04 +00:00
|
|
|
} // namespace auto_updater
|