#ifndef COMPONENTS_METRICS_CALL_STACKS_CALL_STACK_PROFILE_ENCODING_H_
#define COMPONENTS_METRICS_CALL_STACKS_CALL_STACK_PROFILE_ENCODING_H_
#include "base/profiler/call_stack_profile_params.h"
#include "base/profiler/process_type.h"
#include "third_party/metrics_proto/sampled_profile.pb.h"
namespace metrics {
Process ToExecutionContextProcess(base::ProfilerProcessType process);
Thread ToExecutionContextThread(base::ProfilerThreadType thread);
SampledProfile::TriggerEvent ToSampledProfileTriggerEvent(
base::CallStackProfileParams::Trigger trigger);
}
#endif