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/shell/browser/shell_extension_system.h" | 5 #include "extensions/shell/browser/shell_extension_system.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 | 8 |
9 #include "base/files/file_path.h" | 9 #include "base/files/file_path.h" |
10 #include "base/files/file_util.h" | 10 #include "base/files/file_util.h" |
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 } | 134 } |
135 | 135 |
136 LazyBackgroundTaskQueue* ShellExtensionSystem::lazy_background_task_queue() { | 136 LazyBackgroundTaskQueue* ShellExtensionSystem::lazy_background_task_queue() { |
137 return lazy_background_task_queue_.get(); | 137 return lazy_background_task_queue_.get(); |
138 } | 138 } |
139 | 139 |
140 EventRouter* ShellExtensionSystem::event_router() { | 140 EventRouter* ShellExtensionSystem::event_router() { |
141 return event_router_.get(); | 141 return event_router_.get(); |
142 } | 142 } |
143 | 143 |
144 Blacklist* ShellExtensionSystem::blacklist() { | |
145 return NULL; | |
146 } | |
147 | |
148 ErrorConsole* ShellExtensionSystem::error_console() { | 144 ErrorConsole* ShellExtensionSystem::error_console() { |
149 return NULL; | 145 return NULL; |
150 } | 146 } |
151 | 147 |
152 InstallVerifier* ShellExtensionSystem::install_verifier() { | 148 InstallVerifier* ShellExtensionSystem::install_verifier() { |
153 return NULL; | 149 return NULL; |
154 } | 150 } |
155 | 151 |
156 QuotaService* ShellExtensionSystem::quota_service() { | 152 QuotaService* ShellExtensionSystem::quota_service() { |
157 return quota_service_.get(); | 153 return quota_service_.get(); |
(...skipping 29 matching lines...) Expand all Loading... |
187 return make_scoped_ptr(new ExtensionSet()); | 183 return make_scoped_ptr(new ExtensionSet()); |
188 } | 184 } |
189 | 185 |
190 DeclarativeUserScriptMaster* | 186 DeclarativeUserScriptMaster* |
191 ShellExtensionSystem::GetDeclarativeUserScriptMasterByExtension( | 187 ShellExtensionSystem::GetDeclarativeUserScriptMasterByExtension( |
192 const ExtensionId& extension_id) { | 188 const ExtensionId& extension_id) { |
193 return NULL; | 189 return NULL; |
194 } | 190 } |
195 | 191 |
196 } // namespace extensions | 192 } // namespace extensions |
OLD | NEW |