#ifndef COMPONENTS_MANTA_MANTA_SERVICE_H_
#define COMPONENTS_MANTA_MANTA_SERVICE_H_
#include <memory>
#include <string>
#include "base/component_export.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/scoped_refptr.h"
#include "base/version_info/channel.h"
#include "build/chromeos_buildflags.h"
#include "components/keyed_service/core/keyed_service.h"
#include "components/manta/sparky/sparky_delegate.h"
#include "components/manta/sparky/system_info_delegate.h"
namespace signin {
class IdentityManager;
}
namespace network {
class SharedURLLoaderFactory;
}
namespace manta {
enum class FeatureSupportStatus { … };
class AnchovyProvider;
class MahiProvider;
class OrcaProvider;
class SnapperProvider;
class SparkyProvider;
class COMPONENT_EXPORT(MANTA) MantaService : public KeyedService { … };
}
#endif