chromium/services/tracing/public/cpp/background_tracing/background_tracing_agent_provider_impl.cc

// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#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) {}

}  // namespace tracing