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 83cbe18581620acb5fd9e8b331dc4b5ecefc1942..2b1d95162039f311c9b7a20e838776228f723afa 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, |