chromium/components/upload_list/combining_upload_list.h

// Copyright 2021 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_UPLOAD_LIST_COMBINING_UPLOAD_LIST_H_
#define COMPONENTS_UPLOAD_LIST_COMBINING_UPLOAD_LIST_H_

#include <vector>

#include "components/upload_list/upload_list.h"

// Presents a combined view of multiple UploadLists as if they were a single
// UploadList
class CombiningUploadList : public UploadList {};

#endif  // COMPONENTS_UPLOAD_LIST_COMBINING_UPLOAD_LIST_H_