19223952a8
* refactor: convert methods of AutoUpdater to gin * refactor: converter in map_converter.h is no more needed * refactor: use gin in crash_reporter * refactor: remove native_mate_converters/map_converter.h * refactor: implement gfx_converter with gin * refactor: convert methods of NativeImage to gin * refactor: add gin_helper::Arguments * fix: use gin_helper::Arguments to parse multi-type parameters
31 lines
668 B
C++
31 lines
668 B
C++
// Copyright (c) 2013 GitHub, Inc.
|
|
// Use of this source code is governed by the MIT license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include "shell/browser/auto_updater.h"
|
|
|
|
namespace auto_updater {
|
|
|
|
Delegate* AutoUpdater::delegate_ = nullptr;
|
|
|
|
Delegate* AutoUpdater::GetDelegate() {
|
|
return delegate_;
|
|
}
|
|
|
|
void AutoUpdater::SetDelegate(Delegate* delegate) {
|
|
delegate_ = delegate;
|
|
}
|
|
|
|
#if !defined(OS_MACOSX) || defined(MAS_BUILD)
|
|
std::string AutoUpdater::GetFeedURL() {
|
|
return "";
|
|
}
|
|
|
|
void AutoUpdater::SetFeedURL(gin_helper::Arguments* args) {}
|
|
|
|
void AutoUpdater::CheckForUpdates() {}
|
|
|
|
void AutoUpdater::QuitAndInstall() {}
|
|
#endif
|
|
|
|
} // namespace auto_updater
|