OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "chrome/browser/extensions/extension_system.h" | 5 #include "chrome/browser/extensions/extension_system.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
9 #include "base/file_path.h" | 9 #include "base/file_path.h" |
10 #include "base/string_tokenizer.h" | 10 #include "base/string_tokenizer.h" |
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
183 if (!command_line->HasSwitch(switches::kImport) && | 183 if (!command_line->HasSwitch(switches::kImport) && |
184 !command_line->HasSwitch(switches::kImportFromFile)) { | 184 !command_line->HasSwitch(switches::kImportFromFile)) { |
185 if (g_browser_process->profile_manager()->will_import()) { | 185 if (g_browser_process->profile_manager()->will_import()) { |
186 extension_service_->InitEventRoutersAfterImport(); | 186 extension_service_->InitEventRoutersAfterImport(); |
187 } else { | 187 } else { |
188 extension_service_->InitEventRouters(); | 188 extension_service_->InitEventRouters(); |
189 } | 189 } |
190 } | 190 } |
191 } | 191 } |
192 | 192 |
| 193 void ExtensionSystemImpl::Shared::Shutdown() { |
| 194 if (extension_service_.get()) |
| 195 extension_service_->Shutdown(); |
| 196 } |
| 197 |
193 StateStore* ExtensionSystemImpl::Shared::state_store() { | 198 StateStore* ExtensionSystemImpl::Shared::state_store() { |
194 return state_store_.get(); | 199 return state_store_.get(); |
195 } | 200 } |
196 | 201 |
197 ExtensionService* ExtensionSystemImpl::Shared::extension_service() { | 202 ExtensionService* ExtensionSystemImpl::Shared::extension_service() { |
198 return extension_service_.get(); | 203 return extension_service_.get(); |
199 } | 204 } |
200 | 205 |
201 ManagementPolicy* ExtensionSystemImpl::Shared::management_policy() { | 206 ManagementPolicy* ExtensionSystemImpl::Shared::management_policy() { |
202 return management_policy_.get(); | 207 return management_policy_.get(); |
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
374 void ExtensionSystemImpl::UnregisterExtensionWithRequestContexts( | 379 void ExtensionSystemImpl::UnregisterExtensionWithRequestContexts( |
375 const std::string& extension_id, | 380 const std::string& extension_id, |
376 const extension_misc::UnloadedExtensionReason reason) { | 381 const extension_misc::UnloadedExtensionReason reason) { |
377 BrowserThread::PostTask( | 382 BrowserThread::PostTask( |
378 BrowserThread::IO, FROM_HERE, | 383 BrowserThread::IO, FROM_HERE, |
379 base::Bind(&ExtensionInfoMap::RemoveExtension, info_map(), | 384 base::Bind(&ExtensionInfoMap::RemoveExtension, info_map(), |
380 extension_id, reason)); | 385 extension_id, reason)); |
381 } | 386 } |
382 | 387 |
383 } // namespace extensions | 388 } // namespace extensions |
OLD | NEW |