chromium/net/test/test_connection_cost_observer.cc

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

#include "net/test/test_connection_cost_observer.h"

namespace net {

TestConnectionCostObserver::TestConnectionCostObserver() = default;

TestConnectionCostObserver::~TestConnectionCostObserver() {}

void TestConnectionCostObserver::OnConnectionCostChanged(
    NetworkChangeNotifier::ConnectionCost cost) {}

void TestConnectionCostObserver::WaitForConnectionCostChanged() {}

size_t TestConnectionCostObserver::cost_changed_calls() const {}

std::vector<NetworkChangeNotifier::ConnectionCost>
TestConnectionCostObserver::cost_changed_inputs() const {}

NetworkChangeNotifier::ConnectionCost
TestConnectionCostObserver::last_cost_changed_input() const {}

}  // namespace net