| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "apps/shell/browser/shell_extension_system.h" | 5 #include "apps/shell/browser/shell_extension_system.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "apps/shell/browser/api/shell/shell_api.h" | 9 #include "apps/shell/browser/api/shell/shell_api.h" |
| 10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 | 163 |
| 164 void ShellExtensionSystem::UnregisterExtensionWithRequestContexts( | 164 void ShellExtensionSystem::UnregisterExtensionWithRequestContexts( |
| 165 const std::string& extension_id, | 165 const std::string& extension_id, |
| 166 const UnloadedExtensionInfo::Reason reason) { | 166 const UnloadedExtensionInfo::Reason reason) { |
| 167 } | 167 } |
| 168 | 168 |
| 169 const OneShotEvent& ShellExtensionSystem::ready() const { | 169 const OneShotEvent& ShellExtensionSystem::ready() const { |
| 170 return ready_; | 170 return ready_; |
| 171 } | 171 } |
| 172 | 172 |
| 173 ContentVerifier* ShellExtensionSystem::content_verifier() { |
| 174 return NULL; |
| 175 } |
| 176 |
| 173 } // namespace extensions | 177 } // namespace extensions |
| OLD | NEW |