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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 } | 55 } |
56 | 56 |
57 LazyBackgroundTaskQueue* MockExtensionSystem::lazy_background_task_queue() { | 57 LazyBackgroundTaskQueue* MockExtensionSystem::lazy_background_task_queue() { |
58 return NULL; | 58 return NULL; |
59 } | 59 } |
60 | 60 |
61 EventRouter* MockExtensionSystem::event_router() { | 61 EventRouter* MockExtensionSystem::event_router() { |
62 return NULL; | 62 return NULL; |
63 } | 63 } |
64 | 64 |
65 ExtensionWarningService* MockExtensionSystem::warning_service() { | 65 WarningService* MockExtensionSystem::warning_service() { |
66 return NULL; | 66 return NULL; |
67 } | 67 } |
68 | 68 |
69 Blacklist* MockExtensionSystem::blacklist() { | 69 Blacklist* MockExtensionSystem::blacklist() { |
70 return NULL; | 70 return NULL; |
71 } | 71 } |
72 | 72 |
73 ErrorConsole* MockExtensionSystem::error_console() { | 73 ErrorConsole* MockExtensionSystem::error_console() { |
74 return NULL; | 74 return NULL; |
75 } | 75 } |
(...skipping 19 matching lines...) Expand all Loading... |
95 const ExtensionId& extension_id) { | 95 const ExtensionId& extension_id) { |
96 return NULL; | 96 return NULL; |
97 } | 97 } |
98 | 98 |
99 scoped_ptr<ExtensionSet> MockExtensionSystem::GetDependentExtensions( | 99 scoped_ptr<ExtensionSet> MockExtensionSystem::GetDependentExtensions( |
100 const Extension* extension) { | 100 const Extension* extension) { |
101 return scoped_ptr<ExtensionSet>(); | 101 return scoped_ptr<ExtensionSet>(); |
102 } | 102 } |
103 | 103 |
104 } // namespace extensions | 104 } // namespace extensions |
OLD | NEW |