| 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 WarningService* ShellExtensionSystem::warning_service() { | |
| 145 return NULL; | |
| 146 } | |
| 147 | |
| 148 Blacklist* ShellExtensionSystem::blacklist() { | 144 Blacklist* ShellExtensionSystem::blacklist() { |
| 149 return NULL; | 145 return NULL; |
| 150 } | 146 } |
| 151 | 147 |
| 152 ErrorConsole* ShellExtensionSystem::error_console() { | 148 ErrorConsole* ShellExtensionSystem::error_console() { |
| 153 return NULL; | 149 return NULL; |
| 154 } | 150 } |
| 155 | 151 |
| 156 InstallVerifier* ShellExtensionSystem::install_verifier() { | 152 InstallVerifier* ShellExtensionSystem::install_verifier() { |
| 157 return NULL; | 153 return NULL; |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 return make_scoped_ptr(new ExtensionSet()); | 187 return make_scoped_ptr(new ExtensionSet()); |
| 192 } | 188 } |
| 193 | 189 |
| 194 DeclarativeUserScriptMaster* | 190 DeclarativeUserScriptMaster* |
| 195 ShellExtensionSystem::GetDeclarativeUserScriptMasterByExtension( | 191 ShellExtensionSystem::GetDeclarativeUserScriptMasterByExtension( |
| 196 const ExtensionId& extension_id) { | 192 const ExtensionId& extension_id) { |
| 197 return NULL; | 193 return NULL; |
| 198 } | 194 } |
| 199 | 195 |
| 200 } // namespace extensions | 196 } // namespace extensions |
| OLD | NEW |