blob: 5d94ef0d39af34828c3f6d1c6b14a9282e4cb7b2 (
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
|
// 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 "apps/shell/shell_extension_system.h"
#include "base/command_line.h"
#include "chrome/browser/extensions/extension_prefs.h"
#include "content/public/browser/browser_context.h"
#include "extensions/browser/event_router.h"
#include "extensions/browser/lazy_background_task_queue.h"
#include "extensions/browser/process_manager.h"
using content::BrowserContext;
namespace extensions {
ShellExtensionSystem::ShellExtensionSystem(BrowserContext* browser_context)
: browser_context_(browser_context) {
}
ShellExtensionSystem::~ShellExtensionSystem() {
}
void ShellExtensionSystem::Shutdown() {
}
void ShellExtensionSystem::InitForRegularProfile(bool extensions_enabled) {
lazy_background_task_queue_.reset(
new LazyBackgroundTaskQueue(browser_context_));
event_router_.reset(
new EventRouter(browser_context_, ExtensionPrefs::Get(browser_context_)));
process_manager_.reset(ProcessManager::Create(browser_context_));
}
ExtensionService* ShellExtensionSystem::extension_service() {
// This class only has an ExtensionServiceInterface.
return NULL;
}
ManagementPolicy* ShellExtensionSystem::management_policy() {
return NULL;
}
UserScriptMaster* ShellExtensionSystem::user_script_master() {
return NULL;
}
ProcessManager* ShellExtensionSystem::process_manager() {
return process_manager_.get();
}
StateStore* ShellExtensionSystem::state_store() {
return NULL;
}
StateStore* ShellExtensionSystem::rules_store() {
return NULL;
}
InfoMap* ShellExtensionSystem::info_map() {
return NULL;
}
LazyBackgroundTaskQueue* ShellExtensionSystem::lazy_background_task_queue() {
return lazy_background_task_queue_.get();
}
EventRouter* ShellExtensionSystem::event_router() {
return event_router_.get();
}
ExtensionWarningService* ShellExtensionSystem::warning_service() {
return NULL;
}
Blacklist* ShellExtensionSystem::blacklist() {
return NULL;
}
ErrorConsole* ShellExtensionSystem::error_console() {
return NULL;
}
InstallVerifier* ShellExtensionSystem::install_verifier() {
return NULL;
}
void ShellExtensionSystem::RegisterExtensionWithRequestContexts(
const Extension* extension) {
}
void ShellExtensionSystem::UnregisterExtensionWithRequestContexts(
const std::string& extension_id,
const UnloadedExtensionInfo::Reason reason) {
}
const OneShotEvent& ShellExtensionSystem::ready() const {
return ready_;
}
} // namespace extensions
|