chromium/chrome/browser/profiles/batch_upload/batch_upload_service.h

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

#ifndef CHROME_BROWSER_PROFILES_BATCH_UPLOAD_BATCH_UPLOAD_SERVICE_H_
#define CHROME_BROWSER_PROFILES_BATCH_UPLOAD_BATCH_UPLOAD_SERVICE_H_

#include <memory>

#include "base/containers/flat_map.h"
#include "base/memory/raw_ref.h"
#include "chrome/browser/profiles/batch_upload/batch_upload_data_provider.h"
#include "components/keyed_service/core/keyed_service.h"

class Browser;
class Profile;
enum class BatchUploadDataType;
class BatchUploadController;
class BatchUploadDelegate;

// Service tied to a profile that allows the management of the Batch Upload
// Dialog. It communicates with the different data type services that needs to
// integerate with the Batch Upload service.
// Used to open the dialog and manages the lifetime of the controller.
class BatchUploadService : public KeyedService {};

#endif  // CHROME_BROWSER_PROFILES_BATCH_UPLOAD_BATCH_UPLOAD_SERVICE_H_