chromium/components/invalidation/invalidation_factory.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 COMPONENTS_INVALIDATION_INVALIDATION_FACTORY_H_
#define COMPONENTS_INVALIDATION_INVALIDATION_FACTORY_H_

#include <memory>
#include <string>
#include <variant>

#include "base/feature_list.h"
#include "base/memory/scoped_refptr.h"
#include "components/invalidation/invalidation_listener.h"
#include "components/invalidation/public/invalidation_service.h"

class PrefService;

namespace gcm {
class GCMDriver;
}

namespace instance_id {
class InstanceIDDriver;
}

namespace network {
class SharedURLLoaderFactory;
}

invalidation  // namespace invalidation

#endif  // COMPONENTS_INVALIDATION_INVALIDATION_FACTORY_H_