OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 "app/l10n_util.h" | 7 #include "app/l10n_util.h" |
8 #include "app/resource_bundle.h" | 8 #include "app/resource_bundle.h" |
9 #include "base/file_util.h" | 9 #include "base/file_util.h" |
10 #include "base/scoped_temp_dir.h" | 10 #include "base/scoped_temp_dir.h" |
11 #include "base/task.h" | 11 #include "base/task.h" |
12 #include "base/utf_string_conversions.h" | 12 #include "base/utf_string_conversions.h" |
13 #include "chrome/browser/browser_process.h" | 13 #include "chrome/browser/browser_process.h" |
14 #include "chrome/browser/chrome_thread.h" | 14 #include "chrome/browser/chrome_thread.h" |
15 #include "chrome/browser/extensions/convert_user_script.h" | 15 #include "chrome/browser/extensions/convert_user_script.h" |
| 16 #include "chrome/browser/extensions/extension_error_reporter.h" |
16 #include "chrome/browser/profile.h" | 17 #include "chrome/browser/profile.h" |
17 #include "chrome/browser/shell_integration.h" | 18 #include "chrome/browser/shell_integration.h" |
18 #include "chrome/browser/web_applications/web_app.h" | 19 #include "chrome/browser/web_applications/web_app.h" |
19 #include "chrome/common/extensions/extension_error_reporter.h" | |
20 #include "chrome/common/extensions/extension_file_util.h" | 20 #include "chrome/common/extensions/extension_file_util.h" |
21 #include "chrome/common/notification_service.h" | 21 #include "chrome/common/notification_service.h" |
22 #include "chrome/common/notification_type.h" | 22 #include "chrome/common/notification_type.h" |
23 #include "grit/browser_resources.h" | 23 #include "grit/browser_resources.h" |
24 #include "grit/chromium_strings.h" | 24 #include "grit/chromium_strings.h" |
25 #include "third_party/skia/include/core/SkBitmap.h" | 25 #include "third_party/skia/include/core/SkBitmap.h" |
26 | 26 |
27 namespace { | 27 namespace { |
28 // Helper function to delete files. This is used to avoid ugly casts which | 28 // Helper function to delete files. This is used to avoid ugly casts which |
29 // would be necessary with PostMessage since file_util::Delete is overloaded. | 29 // would be necessary with PostMessage since file_util::Delete is overloaded. |
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
326 client_->OnInstallSuccess(extension_.get()); | 326 client_->OnInstallSuccess(extension_.get()); |
327 | 327 |
328 // Tell the frontend about the installation and hand off ownership of | 328 // Tell the frontend about the installation and hand off ownership of |
329 // extension_ to it. | 329 // extension_ to it. |
330 frontend_->OnExtensionInstalled(extension_.release(), | 330 frontend_->OnExtensionInstalled(extension_.release(), |
331 allow_privilege_increase_); | 331 allow_privilege_increase_); |
332 | 332 |
333 // We're done. We don't post any more tasks to ourselves so we are deleted | 333 // We're done. We don't post any more tasks to ourselves so we are deleted |
334 // soon. | 334 // soon. |
335 } | 335 } |
OLD | NEW |