Linux: Depend on liberation-fonts package for RPMs.
[chromium-blink-merge.git] / extensions / browser / mock_extension_system.cc
blob00e3fc22a7a6ac8d831100908bf15dd35931aa2d
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "extensions/browser/mock_extension_system.h"
7 #include "extensions/common/extension_set.h"
9 namespace extensions {
11 MockExtensionSystem::MockExtensionSystem(content::BrowserContext* context)
12 : browser_context_(context) {
15 MockExtensionSystem::~MockExtensionSystem() {
18 void MockExtensionSystem::InitForRegularProfile(bool extensions_enabled) {
21 ExtensionService* MockExtensionSystem::extension_service() {
22 return nullptr;
25 RuntimeData* MockExtensionSystem::runtime_data() {
26 return nullptr;
29 ManagementPolicy* MockExtensionSystem::management_policy() {
30 return nullptr;
33 ServiceWorkerManager* MockExtensionSystem::service_worker_manager() {
34 return nullptr;
37 SharedUserScriptMaster* MockExtensionSystem::shared_user_script_master() {
38 return nullptr;
41 StateStore* MockExtensionSystem::state_store() {
42 return nullptr;
45 StateStore* MockExtensionSystem::rules_store() {
46 return nullptr;
49 InfoMap* MockExtensionSystem::info_map() {
50 return nullptr;
53 QuotaService* MockExtensionSystem::quota_service() {
54 return nullptr;
57 AppSorting* MockExtensionSystem::app_sorting() {
58 return nullptr;
61 const OneShotEvent& MockExtensionSystem::ready() const {
62 return ready_;
65 ContentVerifier* MockExtensionSystem::content_verifier() {
66 return nullptr;
69 scoped_ptr<ExtensionSet> MockExtensionSystem::GetDependentExtensions(
70 const Extension* extension) {
71 return scoped_ptr<ExtensionSet>();
74 } // namespace extensions