blob: 411c7757cf1b645495254b24c90564bfc37d6064 (
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
|
// 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.
#ifndef CHROME_BROWSER_EXTENSIONS_TEST_EXTENSION_SYSTEM_H_
#define CHROME_BROWSER_EXTENSIONS_TEST_EXTENSION_SYSTEM_H_
#pragma once
#include "chrome/browser/extensions/extension_system.h"
class CommandLine;
class FilePath;
// Test ExtensionSystem, for use with TestingProfile.
class TestExtensionSystem : public ExtensionSystem {
public:
explicit TestExtensionSystem(Profile* profile);
virtual ~TestExtensionSystem();
// ProfileKeyedService implementation.
virtual void Shutdown() OVERRIDE;
// Creates an ExtensionService initialized with the testing profile and
// returns it.
ExtensionService* CreateExtensionService(const CommandLine* command_line,
const FilePath& install_directory,
bool autoupdate_enabled);
// Creates an ExtensionProcessManager. If not invoked, the
// ExtensionProcessManager is NULL.
void CreateExtensionProcessManager();
virtual void Init(bool extensions_enabled) OVERRIDE {}
virtual ExtensionService* extension_service() OVERRIDE;
void SetExtensionService(ExtensionService* service);
virtual UserScriptMaster* user_script_master() OVERRIDE;
virtual ExtensionDevToolsManager* devtools_manager() OVERRIDE;
virtual ExtensionProcessManager* process_manager() OVERRIDE;
virtual ExtensionInfoMap* info_map() OVERRIDE;
virtual extensions::LazyBackgroundTaskQueue*
lazy_background_task_queue() OVERRIDE;
virtual ExtensionMessageService* message_service() OVERRIDE;
virtual ExtensionEventRouter* event_router() OVERRIDE;
virtual extensions::RulesRegistryService* rules_registry_service()
OVERRIDE;
// Factory method for tests to use with SetTestingProfile.
static ProfileKeyedService* Build(Profile* profile);
private:
Profile* profile_;
scoped_ptr<ExtensionPrefValueMap> extension_pref_value_map_;
// The Extension Preferences. Only created if CreateExtensionService is
// invoked.
scoped_ptr<ExtensionPrefs> extension_prefs_;
scoped_ptr<ExtensionService> extension_service_;
scoped_ptr<ExtensionProcessManager> extension_process_manager_;
};
#endif // CHROME_BROWSER_EXTENSIONS_TEST_EXTENSION_SYSTEM_H_
|