| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/external_install_manager.h" | 5 #include "chrome/browser/extensions/external_install_manager.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "base/metrics/histogram.h" | 10 #include "base/metrics/histogram_macros.h" |
| 11 #include "chrome/app/chrome_command_ids.h" | 11 #include "chrome/app/chrome_command_ids.h" |
| 12 #include "chrome/browser/chrome_notification_types.h" | 12 #include "chrome/browser/chrome_notification_types.h" |
| 13 #include "chrome/browser/extensions/external_install_error.h" | 13 #include "chrome/browser/extensions/external_install_error.h" |
| 14 #include "chrome/browser/profiles/profile.h" | 14 #include "chrome/browser/profiles/profile.h" |
| 15 #include "content/public/browser/notification_details.h" | 15 #include "content/public/browser/notification_details.h" |
| 16 #include "content/public/browser/notification_source.h" | 16 #include "content/public/browser/notification_source.h" |
| 17 #include "extensions/browser/extension_prefs.h" | 17 #include "extensions/browser/extension_prefs.h" |
| 18 #include "extensions/browser/extension_registry.h" | 18 #include "extensions/browser/extension_registry.h" |
| 19 #include "extensions/common/extension.h" | 19 #include "extensions/common/extension.h" |
| 20 #include "extensions/common/feature_switch.h" | 20 #include "extensions/common/feature_switch.h" |
| (...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 // It's a shame we have to use the notification system (instead of the | 230 // It's a shame we have to use the notification system (instead of the |
| 231 // registry observer) for this, but the ExtensionUnloaded notification is | 231 // registry observer) for this, but the ExtensionUnloaded notification is |
| 232 // not sent out if the extension is disabled (which it is here). | 232 // not sent out if the extension is disabled (which it is here). |
| 233 const std::string& extension_id = | 233 const std::string& extension_id = |
| 234 content::Details<const Extension>(details).ptr()->id(); | 234 content::Details<const Extension>(details).ptr()->id(); |
| 235 if (base::ContainsKey(errors_, extension_id)) | 235 if (base::ContainsKey(errors_, extension_id)) |
| 236 RemoveExternalInstallError(extension_id); | 236 RemoveExternalInstallError(extension_id); |
| 237 } | 237 } |
| 238 | 238 |
| 239 } // namespace extensions | 239 } // namespace extensions |
| OLD | NEW |