chromium/chrome/browser/updates/announcement_notification/announcement_notification_service_factory.cc

// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#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"  // nogncheck
#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  // BUILDFLAG(IS_ANDROID)

// static
AnnouncementNotificationServiceFactory*
AnnouncementNotificationServiceFactory::GetInstance() {}

// static
AnnouncementNotificationService*
AnnouncementNotificationServiceFactory::GetForProfile(Profile* profile) {}

std::unique_ptr<KeyedService>
AnnouncementNotificationServiceFactory::BuildServiceInstanceForBrowserContext(
    content::BrowserContext* context) const {}

AnnouncementNotificationServiceFactory::AnnouncementNotificationServiceFactory()
    :{}

AnnouncementNotificationServiceFactory::
    ~AnnouncementNotificationServiceFactory() = default;