chromium/components/commerce/core/parcel/parcels_manager.h

// Copyright 2023 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_COMMERCE_CORE_PARCEL_PARCELS_MANAGER_H_
#define COMPONENTS_COMMERCE_CORE_PARCEL_PARCELS_MANAGER_H_

#include <memory>
#include <queue>
#include <utility>

#include "base/memory/raw_ptr.h"
#include "base/memory/scoped_refptr.h"
#include "base/memory/weak_ptr.h"
#include "components/commerce/core/commerce_types.h"
#include "components/commerce/core/proto/parcel.pb.h"
#include "components/commerce/core/proto/parcel_tracking_db_content.pb.h"
#include "components/session_proto_db/session_proto_storage.h"

namespace base {
class Clock;
}

namespace network {
class SharedURLLoaderFactory;
}  // namespace network

namespace signin {
class IdentityManager;
}  // namespace signin

namespace commerce {
class ParcelsServerProxy;
class ParcelsStorage;

// Class for managing all the parcel information
class ParcelsManager {};

}  // namespace commerce

#endif  // COMPONENTS_COMMERCE_CORE_PARCEL_PARCELS_MANAGER_H_