Built UserAgent according to OS And Product.
[platform/framework/web/crosswalk-tizen.git] / atom / browser / auto_updater.cc
1 // Copyright (c) 2013 GitHub, Inc.
2 // Use of this source code is governed by the MIT license that can be
3 // found in the LICENSE file.
4
5 #include "atom/browser/auto_updater.h"
6
7 namespace auto_updater {
8
9 Delegate* AutoUpdater::delegate_ = nullptr;
10
11 Delegate* AutoUpdater::GetDelegate() {
12   return delegate_;
13 }
14
15 void AutoUpdater::SetDelegate(Delegate* delegate) {
16   delegate_ = delegate;
17 }
18
19 #if !defined(OS_MACOSX) || defined(MAS_BUILD)
20 std::string AutoUpdater::GetFeedURL() {
21   return "";
22 }
23
24 void AutoUpdater::SetFeedURL(const std::string& url,
25                              const HeaderMap& requestHeaders) {
26 }
27
28 void AutoUpdater::CheckForUpdates() {
29 }
30
31 void AutoUpdater::QuitAndInstall() {
32 }
33 #endif
34
35 }  // namespace auto_updater