Chromium Code Reviews| Index: apps/launcher.cc |
| diff --git a/apps/launcher.cc b/apps/launcher.cc |
| index cda74ac144969d99de88c801dd690c761403e488..28c9adcf08685fb1303b58aa57bd49d00b728148 100644 |
| --- a/apps/launcher.cc |
| +++ b/apps/launcher.cc |
| @@ -28,7 +28,6 @@ |
| #include "extensions/browser/extension_host.h" |
| #include "extensions/browser/extension_prefs.h" |
| #include "extensions/browser/extension_registry.h" |
| -#include "extensions/browser/extension_system.h" |
| #include "extensions/browser/granted_file_entry.h" |
| #include "extensions/browser/lazy_background_task_queue.h" |
| #include "extensions/browser/process_manager.h" |
| @@ -56,7 +55,7 @@ using extensions::app_file_handler_util::PrepareFilesForWritableApp; |
| using extensions::EventRouter; |
| using extensions::Extension; |
| using extensions::ExtensionHost; |
| -using extensions::ExtensionSystem; |
| +//using extensions::ExtensionSystem; |
|
asargent_no_longer_on_chrome
2015/05/14 21:13:55
nit: did you mean to remove this line, instead of
juncai
2015/05/16 00:46:40
Done.
|
| using extensions::GrantedFileEntry; |
| namespace apps { |
| @@ -261,7 +260,7 @@ class PlatformAppPathLauncher |
| // the lazy background task queue is used to load the extension and then |
| // call back to us. |
| extensions::LazyBackgroundTaskQueue* const queue = |
| - ExtensionSystem::Get(profile_)->lazy_background_task_queue(); |
| + extensions::LazyBackgroundTaskQueue::Get(profile_); |
| if (queue->ShouldEnqueueTask(profile_, extension)) { |
| queue->AddPendingTask( |
| profile_, extension_id, |