OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:UnpackedInstaller
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/chrome/browser/extensions/
unpacked_installer.h
26
// per
UnpackedInstaller
.
29
class
UnpackedInstaller
30
: public base::RefCountedThreadSafe<
UnpackedInstaller
> {
32
static scoped_refptr<
UnpackedInstaller
> Create(
65
friend class base::RefCountedThreadSafe<
UnpackedInstaller
>;
67
explicit
UnpackedInstaller
(ExtensionService* extension_service);
68
virtual ~
UnpackedInstaller
();
120
DISALLOW_COPY_AND_ASSIGN(
UnpackedInstaller
);
unpacked_installer.cc
89
scoped_refptr<
UnpackedInstaller
>
UnpackedInstaller
::Create(
91
return scoped_refptr<
UnpackedInstaller
>(
92
new
UnpackedInstaller
(extension_service));
95
UnpackedInstaller
::
UnpackedInstaller
(ExtensionService* extension_service)
103
UnpackedInstaller
::~
UnpackedInstaller
() {
108
void
UnpackedInstaller
::Load(const base::FilePath& path_in) {
114
base::Bind(&
UnpackedInstaller
::GetAbsolutePath, this))
[
all
...]
Completed in 49 milliseconds