1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "extensions/browser/updater/update_service.h"
#include <set>
#include "base/message_loop/message_loop.h"
#include "components/update_client/update_query_params.h"
#include "content/public/browser/browser_context.h"
#include "extensions/browser/updater/extension_downloader.h"
#include "extensions/browser/updater/update_service_factory.h"
#include "extensions/common/extension_urls.h"
using update_client::UpdateQueryParams;
namespace extensions {
// static
UpdateService* UpdateService::Get(content::BrowserContext* context) {
return UpdateServiceFactory::GetForBrowserContext(context);
}
void UpdateService::DownloadAndInstall(
const std::string& id,
const base::Callback<void(bool)>& callback) {
DCHECK(download_callback_.is_null());
download_callback_ = callback;
downloader_->AddPendingExtension(id, extension_urls::GetWebstoreUpdateUrl(),
0);
downloader_->StartAllPending(nullptr);
}
UpdateService::UpdateService(content::BrowserContext* context)
: browser_context_(context),
downloader_(new ExtensionDownloader(this, context->GetRequestContext())) {
downloader_->set_manifest_query_params(
UpdateQueryParams::Get(UpdateQueryParams::CRX));
}
UpdateService::~UpdateService() {
}
void UpdateService::OnExtensionDownloadFailed(
const std::string& id,
Error error,
const PingResult& ping,
const std::set<int>& request_ids) {
auto callback = download_callback_;
download_callback_.Reset();
callback.Run(false);
}
void UpdateService::OnExtensionDownloadFinished(
const CRXFileInfo& file,
bool file_ownership_passed,
const GURL& download_url,
const std::string& version,
const PingResult& ping,
const std::set<int>& request_id,
const InstallCallback& install_callback) {
// TODO(rockot): Actually unpack and install the CRX.
auto callback = download_callback_;
download_callback_.Reset();
callback.Run(true);
if (!install_callback.is_null())
install_callback.Run(true);
}
bool UpdateService::IsExtensionPending(const std::string& id) {
// TODO(rockot): Implement this. For now all IDs are "pending".
return true;
}
bool UpdateService::GetExtensionExistingVersion(const std::string& id,
std::string* version) {
// TODO(rockot): Implement this.
return false;
}
} // namespace extensions
|