OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "extensions/browser/mock_extension_system.h" | 5 #include "extensions/browser/mock_extension_system.h" |
6 | 6 |
7 #include "extensions/common/extension_set.h" | 7 #include "extensions/common/extension_set.h" |
8 | 8 |
9 namespace extensions { | 9 namespace extensions { |
10 | 10 |
(...skipping 24 matching lines...) Expand all Loading... |
35 } | 35 } |
36 | 36 |
37 StateStore* MockExtensionSystem::state_store() { | 37 StateStore* MockExtensionSystem::state_store() { |
38 return nullptr; | 38 return nullptr; |
39 } | 39 } |
40 | 40 |
41 StateStore* MockExtensionSystem::rules_store() { | 41 StateStore* MockExtensionSystem::rules_store() { |
42 return nullptr; | 42 return nullptr; |
43 } | 43 } |
44 | 44 |
| 45 SidebarManager* MockExtensionSystem::sidebar_manager() { |
| 46 return nullptr; |
| 47 } |
| 48 |
45 InfoMap* MockExtensionSystem::info_map() { | 49 InfoMap* MockExtensionSystem::info_map() { |
46 return nullptr; | 50 return nullptr; |
47 } | 51 } |
48 | 52 |
49 QuotaService* MockExtensionSystem::quota_service() { | 53 QuotaService* MockExtensionSystem::quota_service() { |
50 return nullptr; | 54 return nullptr; |
51 } | 55 } |
52 | 56 |
53 const OneShotEvent& MockExtensionSystem::ready() const { | 57 const OneShotEvent& MockExtensionSystem::ready() const { |
54 return ready_; | 58 return ready_; |
55 } | 59 } |
56 | 60 |
57 ContentVerifier* MockExtensionSystem::content_verifier() { | 61 ContentVerifier* MockExtensionSystem::content_verifier() { |
58 return nullptr; | 62 return nullptr; |
59 } | 63 } |
60 | 64 |
61 scoped_ptr<ExtensionSet> MockExtensionSystem::GetDependentExtensions( | 65 scoped_ptr<ExtensionSet> MockExtensionSystem::GetDependentExtensions( |
62 const Extension* extension) { | 66 const Extension* extension) { |
63 return scoped_ptr<ExtensionSet>(); | 67 return scoped_ptr<ExtensionSet>(); |
64 } | 68 } |
65 | 69 |
66 } // namespace extensions | 70 } // namespace extensions |
OLD | NEW |