#include "services/network/keepalive_statistics_recorder.h"
#include <algorithm>
#include "base/not_fatal_until.h"
namespace network {
KeepaliveStatisticsRecorder::KeepaliveStatisticsRecorder() = default;
KeepaliveStatisticsRecorder::~KeepaliveStatisticsRecorder() = default;
void KeepaliveStatisticsRecorder::Register(
const base::UnguessableToken& top_level_frame_id) { … }
void KeepaliveStatisticsRecorder::Unregister(
const base::UnguessableToken& top_level_frame_id) { … }
void KeepaliveStatisticsRecorder::OnLoadStarted(
const base::UnguessableToken& top_level_frame_id,
int request_size) { … }
void KeepaliveStatisticsRecorder::OnLoadFinished(
const base::UnguessableToken& top_level_frame_id,
int request_size) { … }
int KeepaliveStatisticsRecorder::NumInflightRequestsPerTopLevelFrame(
const base::UnguessableToken& top_level_frame_id) const { … }
int KeepaliveStatisticsRecorder::GetTotalRequestSizePerTopLevelFrame(
const base::UnguessableToken& top_level_frame_id) const { … }
}