#include "chrome/browser/updates/announcement_notification/announcement_notification_service_factory.h"
#include <memory>
#include "base/no_destructor.h"
#include "base/time/default_clock.h"
#include "build/build_config.h"
#include "chrome/browser/notifications/notification_display_service_factory.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/updates/announcement_notification/announcement_notification_delegate.h"
#include "chrome/browser/updates/announcement_notification/announcement_notification_service.h"
#include "chrome/browser/updates/announcement_notification/empty_announcement_notification_service.h"
#if BUILDFLAG(IS_ANDROID)
#include "chrome/browser/updates/announcement_notification/announcement_notification_delegate_android.h"
#endif
AnnouncementNotificationServiceFactory*
AnnouncementNotificationServiceFactory::GetInstance() { … }
AnnouncementNotificationService*
AnnouncementNotificationServiceFactory::GetForProfile(Profile* profile) { … }
std::unique_ptr<KeyedService>
AnnouncementNotificationServiceFactory::BuildServiceInstanceForBrowserContext(
content::BrowserContext* context) const { … }
AnnouncementNotificationServiceFactory::AnnouncementNotificationServiceFactory()
: … { … }
AnnouncementNotificationServiceFactory::
~AnnouncementNotificationServiceFactory() = default;