chromium/content/browser/tracing/trace_report/trace_upload_list.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 CONTENT_BROWSER_TRACING_TRACE_REPORT_TRACE_UPLOAD_LIST_H_
#define CONTENT_BROWSER_TRACING_TRACE_REPORT_TRACE_UPLOAD_LIST_H_

#include <memory>
#include <optional>
#include <string>
#include <vector>

#include "base/functional/callback.h"
#include "base/time/time.h"
#include "base/token.h"
#include "content/browser/tracing/trace_report/trace_report_database.h"
#include "content/common/content_export.h"

namespace content {

// TraceUploadList is used on to read/write from the database of trace
// reports stored locally.
class TraceUploadList {};

}  // namespace content

#endif  // CONTENT_BROWSER_TRACING_TRACE_REPORT_TRACE_UPLOAD_LIST_H_