blob: 01827d5a67e527662244d6ff889298ec6edad3f0 [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// 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_observation.h"
#include "base/macros.h"
namespace net {
namespace nqe {
namespace internal {
Observation::Observation(int32_t value,
base::TimeTicks timestamp,
const base::Optional<int32_t>& signal_strength,
NetworkQualityObservationSource source)
: Observation(value, timestamp, signal_strength, source, base::nullopt) {}
Observation::Observation(int32_t value,
base::TimeTicks timestamp,
const base::Optional<int32_t>& signal_strength,
NetworkQualityObservationSource source,
const base::Optional<IPHash>& host)
: value_(value),
timestamp_(timestamp),
signal_strength_(signal_strength),
source_(source),
host_(host) {
DCHECK(!timestamp_.is_null());
}
Observation::Observation(const Observation& other) = default;
Observation& Observation::operator=(const Observation& other) = default;
Observation::~Observation() = default;
ObservationCategory Observation::GetObservationCategory() const {
switch (source_) {
case NETWORK_QUALITY_OBSERVATION_SOURCE_HTTP:
case NETWORK_QUALITY_OBSERVATION_SOURCE_HTTP_CACHED_ESTIMATE:
case NETWORK_QUALITY_OBSERVATION_SOURCE_DEFAULT_HTTP_FROM_PLATFORM:
case NETWORK_QUALITY_OBSERVATION_SOURCE_HTTP_EXTERNAL_ESTIMATE:
return ObservationCategory::kHttp;
case NETWORK_QUALITY_OBSERVATION_SOURCE_TRANSPORT_CACHED_ESTIMATE:
case NETWORK_QUALITY_OBSERVATION_SOURCE_DEFAULT_TRANSPORT_FROM_PLATFORM:
case NETWORK_QUALITY_OBSERVATION_SOURCE_TCP:
case NETWORK_QUALITY_OBSERVATION_SOURCE_QUIC:
return ObservationCategory::kTransport;
case NETWORK_QUALITY_OBSERVATION_SOURCE_MAX:
NOTREACHED();
return ObservationCategory::kHttp;
}
NOTREACHED();
return ObservationCategory::kHttp;
}
} // namespace internal
} // namespace nqe
} // namespace net