Index: chrome/browser/notifications/message_center_settings_controller.cc |
diff --git a/chrome/browser/notifications/message_center_settings_controller.cc b/chrome/browser/notifications/message_center_settings_controller.cc |
index 048f89acc0c5ff432894229e5417b33115626b09..1e82df5aab71f045f723f33fef0f61a1e9f7f30b 100644 |
--- a/chrome/browser/notifications/message_center_settings_controller.cc |
+++ b/chrome/browser/notifications/message_center_settings_controller.cc |
@@ -15,7 +15,6 @@ |
#include "chrome/browser/chrome_notification_types.h" |
#include "chrome/browser/content_settings/host_content_settings_map.h" |
#include "chrome/browser/extensions/app_icon_loader_impl.h" |
-#include "chrome/browser/extensions/extension_util.h" |
#include "chrome/browser/favicon/favicon_service.h" |
#include "chrome/browser/favicon/favicon_service_factory.h" |
#include "chrome/browser/history/history_types.h" |
@@ -34,7 +33,6 @@ |
#include "content/public/browser/notification_source.h" |
#include "extensions/browser/event_router.h" |
#include "extensions/browser/extension_registry.h" |
-#include "extensions/browser/extension_util.h" |
#include "extensions/common/constants.h" |
#include "extensions/common/extension.h" |
#include "extensions/common/permissions/permissions_data.h" |
@@ -234,12 +232,6 @@ void MessageCenterSettingsController::GetNotifierList( |
continue; |
} |
- // Exclude cached ephemeral apps that are not currently running. |
- if (extensions::util::IsEphemeralApp(extension->id(), profile) && |
- extensions::util::IsExtensionIdle(extension->id(), profile)) { |
- continue; |
- } |
- |
NotifierId notifier_id(NotifierId::APPLICATION, extension->id()); |
notifiers->push_back(new Notifier( |
notifier_id, |