| 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/file_util.h" | 10 #include "base/file_util.h" |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 } | 176 } |
| 177 | 177 |
| 178 const OneShotEvent& ShellExtensionSystem::ready() const { | 178 const OneShotEvent& ShellExtensionSystem::ready() const { |
| 179 return ready_; | 179 return ready_; |
| 180 } | 180 } |
| 181 | 181 |
| 182 ContentVerifier* ShellExtensionSystem::content_verifier() { | 182 ContentVerifier* ShellExtensionSystem::content_verifier() { |
| 183 return NULL; | 183 return NULL; |
| 184 } | 184 } |
| 185 | 185 |
| 186 scoped_ptr<ExtensionSet> ShellExtensionSystem::GetDependentExtensions( |
| 187 const Extension* extension) { |
| 188 scoped_ptr<ExtensionSet> empty(new ExtensionSet()); |
| 189 return empty.PassAs<ExtensionSet>(); |
| 190 } |
| 191 |
| 186 } // namespace extensions | 192 } // namespace extensions |
| OLD | NEW |