| 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 397815f215bbba13d3f1e01bc8da66a1199d8f40..905f76c12baed63287a82ad02535f3bb5186b859 100644
|
| --- a/chrome/browser/notifications/message_center_settings_controller.cc
|
| +++ b/chrome/browser/notifications/message_center_settings_controller.cc
|
| @@ -14,7 +14,6 @@
|
| #include "chrome/browser/browser_process.h"
|
| #include "chrome/browser/chrome_notification_types.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"
|
| @@ -32,7 +31,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"
|
| @@ -232,12 +230,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,
|
|
|