| 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 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 if (!command_line->HasSwitch(switches::kImport) && | 189 if (!command_line->HasSwitch(switches::kImport) && |
| 190 !command_line->HasSwitch(switches::kImportFromFile)) { | 190 !command_line->HasSwitch(switches::kImportFromFile)) { |
| 191 if (g_browser_process->profile_manager()->will_import()) { | 191 if (g_browser_process->profile_manager()->will_import()) { |
| 192 extension_service_->InitEventRoutersAfterImport(); | 192 extension_service_->InitEventRoutersAfterImport(); |
| 193 } else { | 193 } else { |
| 194 extension_service_->InitEventRouters(); | 194 extension_service_->InitEventRouters(); |
| 195 } | 195 } |
| 196 } | 196 } |
| 197 } | 197 } |
| 198 | 198 |
| 199 void ExtensionSystemImpl::Shared::Shutdown() { |
| 200 if (extension_service_.get()) |
| 201 extension_service_->Shutdown(); |
| 202 } |
| 203 |
| 199 StateStore* ExtensionSystemImpl::Shared::state_store() { | 204 StateStore* ExtensionSystemImpl::Shared::state_store() { |
| 200 return state_store_.get(); | 205 return state_store_.get(); |
| 201 } | 206 } |
| 202 | 207 |
| 203 ExtensionService* ExtensionSystemImpl::Shared::extension_service() { | 208 ExtensionService* ExtensionSystemImpl::Shared::extension_service() { |
| 204 return extension_service_.get(); | 209 return extension_service_.get(); |
| 205 } | 210 } |
| 206 | 211 |
| 207 ManagementPolicy* ExtensionSystemImpl::Shared::management_policy() { | 212 ManagementPolicy* ExtensionSystemImpl::Shared::management_policy() { |
| 208 return management_policy_.get(); | 213 return management_policy_.get(); |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 376 void ExtensionSystemImpl::UnregisterExtensionWithRequestContexts( | 381 void ExtensionSystemImpl::UnregisterExtensionWithRequestContexts( |
| 377 const std::string& extension_id, | 382 const std::string& extension_id, |
| 378 const extension_misc::UnloadedExtensionReason reason) { | 383 const extension_misc::UnloadedExtensionReason reason) { |
| 379 BrowserThread::PostTask( | 384 BrowserThread::PostTask( |
| 380 BrowserThread::IO, FROM_HERE, | 385 BrowserThread::IO, FROM_HERE, |
| 381 base::Bind(&ExtensionInfoMap::RemoveExtension, info_map(), | 386 base::Bind(&ExtensionInfoMap::RemoveExtension, info_map(), |
| 382 extension_id, reason)); | 387 extension_id, reason)); |
| 383 } | 388 } |
| 384 | 389 |
| 385 } // namespace extensions | 390 } // namespace extensions |
| OLD | NEW |