blob: dc5974a97e29fb2dfa96316e30126d001870a1ec (
plain)
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
|
// Copyright (c) 2012 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.
//
// Download code which handles CRX files (extensions, themes, apps, ...).
#ifndef CHROME_BROWSER_DOWNLOAD_DOWNLOAD_CRX_UTIL_H_
#define CHROME_BROWSER_DOWNLOAD_DOWNLOAD_CRX_UTIL_H_
#include "base/basictypes.h"
#include "base/memory/ref_counted.h"
class ExtensionInstallPrompt;
class Profile;
namespace content {
class DownloadItem;
}
namespace extensions {
class CrxInstaller;
}
namespace download_crx_util {
// Allow tests to install a mock ExtensionInstallPrompt object, to fake
// user clicks on the permissions dialog. Each installed mock object
// is only used once. If you want to return a mock for two different
// installs, you need to call this function once before the first
// install, and again after the first install and before the second.
void SetMockInstallPromptForTesting(ExtensionInstallPrompt* mock_prompt);
// Start installing a downloaded item item as a CRX (extension, theme, app,
// ...). The installer does work on the file thread, so the installation
// is not complete when this function returns. Returns the object managing
// the installation.
scoped_refptr<extensions::CrxInstaller> OpenChromeExtension(
Profile* profile,
const content::DownloadItem& download_item);
// Returns true if this is an extension download. This also considers user
// scripts to be extension downloads, since we convert those automatically.
bool IsExtensionDownload(const content::DownloadItem& download_item);
} // namespace download_crx_util
#endif // CHROME_BROWSER_DOWNLOAD_DOWNLOAD_CRX_UTIL_H_
|