blob: 715b5cf2a30dd536aa1b20f4d4e72ff336011980 [file] [log] [blame]
// Copyright 2014 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/base/network_activity_monitor.h"
#include <atomic>
#include <type_traits>
namespace net::activity_monitor {
namespace {
constinit std::atomic<uint64_t> g_bytes_received = 0;
} // namespace
void IncrementBytesReceived(uint64_t bytes_received) {
// std::memory_order_relaxed is used because no other operation on
// |bytes_received_| depends on memory operations that happened before this
// increment.
g_bytes_received.fetch_add(bytes_received, std::memory_order_relaxed);
}
uint64_t GetBytesReceived() {
return g_bytes_received.load(std::memory_order_relaxed);
}
void ResetBytesReceivedForTesting() {
g_bytes_received = 0;
}
} // namespace net::activity_monitor