chromium/net/nqe/network_quality.cc

// Copyright 2016 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/nqe/network_quality.h"

namespace net::nqe::internal {

base::TimeDelta InvalidRTT() {}

NetworkQuality::NetworkQuality()
    :{}

NetworkQuality::NetworkQuality(const base::TimeDelta& http_rtt,
                               const base::TimeDelta& transport_rtt,
                               int32_t downstream_throughput_kbps)
    :{}

NetworkQuality::NetworkQuality(const NetworkQuality& other)
    :{}

NetworkQuality::~NetworkQuality() = default;

NetworkQuality& NetworkQuality::operator=(const NetworkQuality& other) {}

bool NetworkQuality::operator==(const NetworkQuality& other) const {}

bool NetworkQuality::IsFaster(const NetworkQuality& other) const {}

void NetworkQuality::VerifyValueCorrectness() const {}

}  // namespace net::nqe::internal