| 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 16 matching lines...) Expand all Loading... |
| 27 } | 27 } |
| 28 | 28 |
| 29 ManagementPolicy* MockExtensionSystem::management_policy() { | 29 ManagementPolicy* MockExtensionSystem::management_policy() { |
| 30 return nullptr; | 30 return nullptr; |
| 31 } | 31 } |
| 32 | 32 |
| 33 SharedUserScriptMaster* MockExtensionSystem::shared_user_script_master() { | 33 SharedUserScriptMaster* MockExtensionSystem::shared_user_script_master() { |
| 34 return nullptr; | 34 return nullptr; |
| 35 } | 35 } |
| 36 | 36 |
| 37 DeclarativeUserScriptManager* | |
| 38 MockExtensionSystem::declarative_user_script_manager() { | |
| 39 return nullptr; | |
| 40 } | |
| 41 | |
| 42 StateStore* MockExtensionSystem::state_store() { | 37 StateStore* MockExtensionSystem::state_store() { |
| 43 return nullptr; | 38 return nullptr; |
| 44 } | 39 } |
| 45 | 40 |
| 46 StateStore* MockExtensionSystem::rules_store() { | 41 StateStore* MockExtensionSystem::rules_store() { |
| 47 return nullptr; | 42 return nullptr; |
| 48 } | 43 } |
| 49 | 44 |
| 50 InfoMap* MockExtensionSystem::info_map() { | 45 InfoMap* MockExtensionSystem::info_map() { |
| 51 return nullptr; | 46 return nullptr; |
| (...skipping 26 matching lines...) Expand all Loading... |
| 78 ContentVerifier* MockExtensionSystem::content_verifier() { | 73 ContentVerifier* MockExtensionSystem::content_verifier() { |
| 79 return nullptr; | 74 return nullptr; |
| 80 } | 75 } |
| 81 | 76 |
| 82 scoped_ptr<ExtensionSet> MockExtensionSystem::GetDependentExtensions( | 77 scoped_ptr<ExtensionSet> MockExtensionSystem::GetDependentExtensions( |
| 83 const Extension* extension) { | 78 const Extension* extension) { |
| 84 return scoped_ptr<ExtensionSet>(); | 79 return scoped_ptr<ExtensionSet>(); |
| 85 } | 80 } |
| 86 | 81 |
| 87 } // namespace extensions | 82 } // namespace extensions |
| OLD | NEW |