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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 } | 116 } |
117 | 117 |
118 StateStore* ShellExtensionSystem::state_store() { | 118 StateStore* ShellExtensionSystem::state_store() { |
119 return nullptr; | 119 return nullptr; |
120 } | 120 } |
121 | 121 |
122 StateStore* ShellExtensionSystem::rules_store() { | 122 StateStore* ShellExtensionSystem::rules_store() { |
123 return nullptr; | 123 return nullptr; |
124 } | 124 } |
125 | 125 |
| 126 SidebarManager* ShellExtensionSystem::sidebar_manager() { |
| 127 return nullptr; |
| 128 } |
| 129 |
126 InfoMap* ShellExtensionSystem::info_map() { | 130 InfoMap* ShellExtensionSystem::info_map() { |
127 if (!info_map_.get()) | 131 if (!info_map_.get()) |
128 info_map_ = new InfoMap; | 132 info_map_ = new InfoMap; |
129 return info_map_.get(); | 133 return info_map_.get(); |
130 } | 134 } |
131 | 135 |
132 QuotaService* ShellExtensionSystem::quota_service() { | 136 QuotaService* ShellExtensionSystem::quota_service() { |
133 return quota_service_.get(); | 137 return quota_service_.get(); |
134 } | 138 } |
135 | 139 |
(...skipping 21 matching lines...) Expand all Loading... |
157 ContentVerifier* ShellExtensionSystem::content_verifier() { | 161 ContentVerifier* ShellExtensionSystem::content_verifier() { |
158 return nullptr; | 162 return nullptr; |
159 } | 163 } |
160 | 164 |
161 scoped_ptr<ExtensionSet> ShellExtensionSystem::GetDependentExtensions( | 165 scoped_ptr<ExtensionSet> ShellExtensionSystem::GetDependentExtensions( |
162 const Extension* extension) { | 166 const Extension* extension) { |
163 return make_scoped_ptr(new ExtensionSet()); | 167 return make_scoped_ptr(new ExtensionSet()); |
164 } | 168 } |
165 | 169 |
166 } // namespace extensions | 170 } // namespace extensions |
OLD | NEW |