| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/crx_installer.h" | 5 #include "chrome/browser/extensions/crx_installer.h" |
| 6 | 6 |
| 7 #include <map> | 7 #include <map> |
| 8 #include <set> | 8 #include <set> |
| 9 | 9 |
| 10 #include "base/file_util.h" | 10 #include "base/file_util.h" |
| 11 #include "base/lazy_instance.h" | 11 #include "base/lazy_instance.h" |
| 12 #include "base/memory/scoped_temp_dir.h" | |
| 13 #include "base/metrics/histogram.h" | 12 #include "base/metrics/histogram.h" |
| 14 #include "base/path_service.h" | 13 #include "base/path_service.h" |
| 14 #include "base/scoped_temp_dir.h" |
| 15 #include "base/stl_util-inl.h" | 15 #include "base/stl_util-inl.h" |
| 16 #include "base/stringprintf.h" | 16 #include "base/stringprintf.h" |
| 17 #include "base/task.h" | 17 #include "base/task.h" |
| 18 #include "base/threading/thread_restrictions.h" | 18 #include "base/threading/thread_restrictions.h" |
| 19 #include "base/time.h" | 19 #include "base/time.h" |
| 20 #include "base/utf_string_conversions.h" | 20 #include "base/utf_string_conversions.h" |
| 21 #include "base/version.h" | 21 #include "base/version.h" |
| 22 #include "chrome/browser/browser_process.h" | 22 #include "chrome/browser/browser_process.h" |
| 23 #include "chrome/browser/extensions/convert_user_script.h" | 23 #include "chrome/browser/extensions/convert_user_script.h" |
| 24 #include "chrome/browser/extensions/convert_web_app.h" | 24 #include "chrome/browser/extensions/convert_web_app.h" |
| (...skipping 523 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 548 client_->OnInstallSuccess(extension_.get(), install_icon_.get()); | 548 client_->OnInstallSuccess(extension_.get(), install_icon_.get()); |
| 549 | 549 |
| 550 // Tell the frontend about the installation and hand off ownership of | 550 // Tell the frontend about the installation and hand off ownership of |
| 551 // extension_ to it. | 551 // extension_ to it. |
| 552 frontend_weak_->OnExtensionInstalled(extension_); | 552 frontend_weak_->OnExtensionInstalled(extension_); |
| 553 extension_ = NULL; | 553 extension_ = NULL; |
| 554 | 554 |
| 555 // We're done. We don't post any more tasks to ourselves so we are deleted | 555 // We're done. We don't post any more tasks to ourselves so we are deleted |
| 556 // soon. | 556 // soon. |
| 557 } | 557 } |
| OLD | NEW |