| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 } | 51 } |
| 52 | 52 |
| 53 LazyBackgroundTaskQueue* MockExtensionSystem::lazy_background_task_queue() { | 53 LazyBackgroundTaskQueue* MockExtensionSystem::lazy_background_task_queue() { |
| 54 return NULL; | 54 return NULL; |
| 55 } | 55 } |
| 56 | 56 |
| 57 EventRouter* MockExtensionSystem::event_router() { | 57 EventRouter* MockExtensionSystem::event_router() { |
| 58 return NULL; | 58 return NULL; |
| 59 } | 59 } |
| 60 | 60 |
| 61 Blacklist* MockExtensionSystem::blacklist() { | |
| 62 return NULL; | |
| 63 } | |
| 64 | |
| 65 ErrorConsole* MockExtensionSystem::error_console() { | 61 ErrorConsole* MockExtensionSystem::error_console() { |
| 66 return NULL; | 62 return NULL; |
| 67 } | 63 } |
| 68 | 64 |
| 69 InstallVerifier* MockExtensionSystem::install_verifier() { | 65 InstallVerifier* MockExtensionSystem::install_verifier() { |
| 70 return NULL; | 66 return NULL; |
| 71 } | 67 } |
| 72 | 68 |
| 73 QuotaService* MockExtensionSystem::quota_service() { | 69 QuotaService* MockExtensionSystem::quota_service() { |
| 74 return NULL; | 70 return NULL; |
| (...skipping 12 matching lines...) Expand all Loading... |
| 87 const ExtensionId& extension_id) { | 83 const ExtensionId& extension_id) { |
| 88 return NULL; | 84 return NULL; |
| 89 } | 85 } |
| 90 | 86 |
| 91 scoped_ptr<ExtensionSet> MockExtensionSystem::GetDependentExtensions( | 87 scoped_ptr<ExtensionSet> MockExtensionSystem::GetDependentExtensions( |
| 92 const Extension* extension) { | 88 const Extension* extension) { |
| 93 return scoped_ptr<ExtensionSet>(); | 89 return scoped_ptr<ExtensionSet>(); |
| 94 } | 90 } |
| 95 | 91 |
| 96 } // namespace extensions | 92 } // namespace extensions |
| OLD | NEW |