#include "services/tracing/public/cpp/background_tracing/background_tracing_agent_provider_impl.h"
#include <memory>
#include "base/metrics/statistics_recorder.h"
#include "base/trace_event/memory_dump_manager.h"
#include "base/trace_event/trace_event.h"
#include "mojo/public/cpp/bindings/self_owned_receiver.h"
#include "services/tracing/public/cpp/background_tracing/background_tracing_agent_impl.h"
namespace tracing {
BackgroundTracingAgentProviderImpl::BackgroundTracingAgentProviderImpl() =
default;
BackgroundTracingAgentProviderImpl::~BackgroundTracingAgentProviderImpl() =
default;
void BackgroundTracingAgentProviderImpl::AddBinding(
mojo::PendingReceiver<mojom::BackgroundTracingAgentProvider> provider) { … }
void BackgroundTracingAgentProviderImpl::Create(
uint64_t tracing_process_id,
mojo::PendingRemote<mojom::BackgroundTracingAgentClient> client,
mojo::PendingReceiver<mojom::BackgroundTracingAgent> agent) { … }
}