chromium/services/network/net_log_proxy_sink.cc

// Copyright 2020 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/network/net_log_proxy_sink.h"
#include "base/task/sequenced_task_runner.h"
#include "mojo/public/cpp/bindings/message.h"

namespace network {

NetLogProxySink::NetLogProxySink()
    :{}

NetLogProxySink::~NetLogProxySink() {}

void NetLogProxySink::AttachSource(
    mojo::PendingRemote<network::mojom::NetLogProxySource> proxy_source_remote,
    mojo::PendingReceiver<network::mojom::NetLogProxySink>
        proxy_sink_receiver) {}

void NetLogProxySink::OnCaptureModeUpdated(net::NetLogCaptureModeSet modes) {}

void NetLogProxySink::AddEntry(uint32_t type,
                               const net::NetLogSource& net_log_source,
                               net::NetLogEventPhase phase,
                               base::TimeTicks time,
                               base::Value::Dict params) {}

}  // namespace network