blob: 5c4cf5d4a90eb2215659b9f91b9177e96d828d76 (
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
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
// Copyright 2013 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/extension_registry.h"
#include "base/strings/string_util.h"
#include "extensions/browser/extension_registry_factory.h"
#include "extensions/browser/extension_registry_observer.h"
namespace extensions {
ExtensionRegistry::ExtensionRegistry() {}
ExtensionRegistry::~ExtensionRegistry() {}
// static
ExtensionRegistry* ExtensionRegistry::Get(content::BrowserContext* context) {
return ExtensionRegistryFactory::GetForBrowserContext(context);
}
void ExtensionRegistry::AddObserver(ExtensionRegistryObserver* observer) {
observers_.AddObserver(observer);
}
void ExtensionRegistry::RemoveObserver(ExtensionRegistryObserver* observer) {
observers_.RemoveObserver(observer);
}
void ExtensionRegistry::TriggerOnUnloaded(const Extension* extension) {
DCHECK(!enabled_extensions_.Contains(extension->id()));
FOR_EACH_OBSERVER(
ExtensionRegistryObserver, observers_, OnExtensionUnloaded(extension));
}
const Extension* ExtensionRegistry::GetExtensionById(const std::string& id,
int include_mask) const {
std::string lowercase_id = StringToLowerASCII(id);
if (include_mask & ENABLED) {
const Extension* extension = enabled_extensions_.GetByID(lowercase_id);
if (extension)
return extension;
}
if (include_mask & DISABLED) {
const Extension* extension = disabled_extensions_.GetByID(lowercase_id);
if (extension)
return extension;
}
if (include_mask & TERMINATED) {
const Extension* extension = terminated_extensions_.GetByID(lowercase_id);
if (extension)
return extension;
}
if (include_mask & BLACKLISTED) {
const Extension* extension = blacklisted_extensions_.GetByID(lowercase_id);
if (extension)
return extension;
}
return NULL;
}
bool ExtensionRegistry::AddEnabled(
const scoped_refptr<const Extension>& extension) {
return enabled_extensions_.Insert(extension);
}
bool ExtensionRegistry::RemoveEnabled(const std::string& id) {
return enabled_extensions_.Remove(id);
}
bool ExtensionRegistry::AddDisabled(
const scoped_refptr<const Extension>& extension) {
return disabled_extensions_.Insert(extension);
}
bool ExtensionRegistry::RemoveDisabled(const std::string& id) {
return disabled_extensions_.Remove(id);
}
bool ExtensionRegistry::AddTerminated(
const scoped_refptr<const Extension>& extension) {
return terminated_extensions_.Insert(extension);
}
bool ExtensionRegistry::RemoveTerminated(const std::string& id) {
return terminated_extensions_.Remove(id);
}
bool ExtensionRegistry::AddBlacklisted(
const scoped_refptr<const Extension>& extension) {
return blacklisted_extensions_.Insert(extension);
}
bool ExtensionRegistry::RemoveBlacklisted(const std::string& id) {
return blacklisted_extensions_.Remove(id);
}
void ExtensionRegistry::ClearAll() {
enabled_extensions_.Clear();
disabled_extensions_.Clear();
terminated_extensions_.Clear();
blacklisted_extensions_.Clear();
}
void ExtensionRegistry::SetDisabledModificationCallback(
const ExtensionSet::ModificationCallback& callback) {
disabled_extensions_.set_modification_callback(callback);
}
void ExtensionRegistry::Shutdown() {
// Release references to all Extension objects in the sets.
ClearAll();
}
} // namespace extensions
|