diff options
Diffstat (limited to 'chrome/browser/background/background_contents_service.cc')
-rw-r--r-- | chrome/browser/background/background_contents_service.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/browser/background/background_contents_service.cc b/chrome/browser/background/background_contents_service.cc index d08e84f..bb25f9b 100644 --- a/chrome/browser/background/background_contents_service.cc +++ b/chrome/browser/background/background_contents_service.cc @@ -325,7 +325,8 @@ void BackgroundContentsService::Observe( switch (content::Details<UnloadedExtensionInfo>(details)->reason) { case extension_misc::UNLOAD_REASON_DISABLE: // Fall through. case extension_misc::UNLOAD_REASON_TERMINATE: // Fall through. - case extension_misc::UNLOAD_REASON_UNINSTALL: + case extension_misc::UNLOAD_REASON_UNINSTALL: // Fall through. + case extension_misc::UNLOAD_REASON_BLACKLIST: ShutdownAssociatedBackgroundContents( ASCIIToUTF16(content::Details<UnloadedExtensionInfo>(details)-> extension->id())); |