#ifndef CHROME_BROWSER_NOTIFICATIONS_SCHEDULER_SCHEDULE_SERVICE_FACTORY_HELPER_H_
#define CHROME_BROWSER_NOTIFICATIONS_SCHEDULER_SCHEDULE_SERVICE_FACTORY_HELPER_H_
#include <memory>
#include "base/files/file_path.h"
#include "components/keyed_service/core/keyed_service.h"
namespace leveldb_proto {
class ProtoDatabaseProvider;
}
namespace notifications {
class DisplayAgent;
class NotificationBackgroundTaskScheduler;
class NotificationSchedulerClientRegistrar;
std::unique_ptr<KeyedService> CreateNotificationScheduleService(
std::unique_ptr<NotificationSchedulerClientRegistrar> client_registrar,
std::unique_ptr<NotificationBackgroundTaskScheduler>
background_task_scheduler,
std::unique_ptr<DisplayAgent> display_agent,
leveldb_proto::ProtoDatabaseProvider* db_provider,
const base::FilePath& storage_dir,
bool off_the_record);
}
#endif