| 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 d92a92e2bd3b6f7d654160c0c54b985aeeceb819..91d94b70fc8b5d6729bfa8d876230c048f19b047 100644
|
| --- a/chrome/browser/notifications/message_center_settings_controller.cc
|
| +++ b/chrome/browser/notifications/message_center_settings_controller.cc
|
| @@ -33,6 +33,7 @@
|
| #include "content/public/browser/notification_source.h"
|
| #include "extensions/browser/event_router.h"
|
| #include "extensions/browser/extension_system.h"
|
| +#include "extensions/browser/extension_util.h"
|
| #include "grit/theme_resources.h"
|
| #include "grit/ui_strings.h"
|
| #include "ui/base/l10n/l10n_util.h"
|
| @@ -231,7 +232,7 @@ void MessageCenterSettingsController::GetNotifierList(
|
| }
|
|
|
| // Exclude cached ephemeral apps that are not currently running.
|
| - if (extension->is_ephemeral() &&
|
| + if (extensions::util::IsEphemeralApp(extension->id(), profile) &&
|
| extensions::util::IsExtensionIdle(extension->id(), profile)) {
|
| continue;
|
| }
|
|
|