#include "chrome/browser/notifications/system_notification_helper.h"
#include "chrome/browser/notifications/notification_display_service_impl.h"
namespace {
SystemNotificationHelper* g_instance = …;
}
SystemNotificationHelper* SystemNotificationHelper::GetInstance() { … }
SystemNotificationHelper::SystemNotificationHelper() { … }
SystemNotificationHelper::~SystemNotificationHelper() { … }
void SystemNotificationHelper::Display(
const message_center::Notification& notification) { … }
void SystemNotificationHelper::Close(const std::string& notification_id) { … }
void SystemNotificationHelper::SetSystemServiceForTesting(
std::unique_ptr<NotificationDisplayService> service) { … }
NotificationDisplayService* SystemNotificationHelper::GetSystemService() { … }