chromium/services/tracing/public/cpp/traced_process.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/traced_process.h"

#include <utility>

#include "build/blink_buildflags.h"
#include "build/build_config.h"

#if !BUILDFLAG(IS_NACL) && BUILDFLAG(USE_BLINK)
#include "services/tracing/public/cpp/traced_process_impl.h"
#endif

namespace tracing {

// static
void TracedProcess::ResetTracedProcessReceiver() {}

// static
void TracedProcess::OnTracedProcessRequest(
    mojo::PendingReceiver<mojom::TracedProcess> receiver) {}

// static
void TracedProcess::EnableSystemTracingService(
    mojo::PendingRemote<mojom::SystemTracingService> remote) {}

}  // namespace tracing