chromium/base/profiler/call_stack_profile_params.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 BASE_PROFILER_CALL_STACK_PROFILE_PARAMS_H_
#define BASE_PROFILER_CALL_STACK_PROFILE_PARAMS_H_

#include "base/base_export.h"
#include "base/profiler/process_type.h"
#include "base/time/time.h"

namespace base {

// Parameters to pass back to the metrics provider.
// TODO(crbug.com/354124876): Revisit whether this type needs to live in //base,
// once the core logic has been moved.
struct BASE_EXPORT CallStackProfileParams {};

}  // namespace base

#endif  // BASE_PROFILER_CALL_STACK_PROFILE_PARAMS_H_