| 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 20 matching lines...) Expand all Loading... |
| 31 } | 31 } |
| 32 | 32 |
| 33 ManagementPolicy* MockExtensionSystem::management_policy() { | 33 ManagementPolicy* MockExtensionSystem::management_policy() { |
| 34 return NULL; | 34 return NULL; |
| 35 } | 35 } |
| 36 | 36 |
| 37 SharedUserScriptMaster* MockExtensionSystem::shared_user_script_master() { | 37 SharedUserScriptMaster* MockExtensionSystem::shared_user_script_master() { |
| 38 return NULL; | 38 return NULL; |
| 39 } | 39 } |
| 40 | 40 |
| 41 ProcessManager* MockExtensionSystem::process_manager() { | |
| 42 return NULL; | |
| 43 } | |
| 44 | |
| 45 StateStore* MockExtensionSystem::state_store() { | 41 StateStore* MockExtensionSystem::state_store() { |
| 46 return NULL; | 42 return NULL; |
| 47 } | 43 } |
| 48 | 44 |
| 49 StateStore* MockExtensionSystem::rules_store() { | 45 StateStore* MockExtensionSystem::rules_store() { |
| 50 return NULL; | 46 return NULL; |
| 51 } | 47 } |
| 52 | 48 |
| 53 InfoMap* MockExtensionSystem::info_map() { | 49 InfoMap* MockExtensionSystem::info_map() { |
| 54 return NULL; | 50 return NULL; |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 const ExtensionId& extension_id) { | 91 const ExtensionId& extension_id) { |
| 96 return NULL; | 92 return NULL; |
| 97 } | 93 } |
| 98 | 94 |
| 99 scoped_ptr<ExtensionSet> MockExtensionSystem::GetDependentExtensions( | 95 scoped_ptr<ExtensionSet> MockExtensionSystem::GetDependentExtensions( |
| 100 const Extension* extension) { | 96 const Extension* extension) { |
| 101 return scoped_ptr<ExtensionSet>(); | 97 return scoped_ptr<ExtensionSet>(); |
| 102 } | 98 } |
| 103 | 99 |
| 104 } // namespace extensions | 100 } // namespace extensions |
| OLD | NEW |