chromium/components/performance_manager/resource_attribution/query_params.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_PERFORMANCE_MANAGER_RESOURCE_ATTRIBUTION_QUERY_PARAMS_H_
#define COMPONENTS_PERFORMANCE_MANAGER_RESOURCE_ATTRIBUTION_QUERY_PARAMS_H_

#include <memory>
#include <optional>

#include "base/types/id_type.h"
#include "base/types/pass_key.h"
#include "components/performance_manager/public/resource_attribution/resource_types.h"
#include "components/performance_manager/resource_attribution/context_collection.h"

namespace resource_attribution::internal {

class QueryScheduler;

// Id to identify the ScopedResourceUsageQuery that QueryParams came from.
// One-shot queries (created with QueryBuilder::QueryOnce()) won't have an id.
QueryId;

class QueryParams {};

}  // namespace resource_attribution::internal

#endif  // COMPONENTS_PERFORMANCE_MANAGER_RESOURCE_ATTRIBUTION_QUERY_PARAMS_H_