// Copyright 2018 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef SERVICES_NETWORK_KEEPALIVE_STATISTICS_RECORDER_H_ #define SERVICES_NETWORK_KEEPALIVE_STATISTICS_RECORDER_H_ #include <map> #include "base/component_export.h" #include "base/memory/weak_ptr.h" #include "base/unguessable_token.h" namespace network { // KeepaliveStatisticsRecorder keeps tracks of the number of inflight requests // with "keepalive" set. class COMPONENT_EXPORT(NETWORK_SERVICE) KeepaliveStatisticsRecorder final { … }; } // namespace network #endif // SERVICES_NETWORK_KEEPALIVE_STATISTICS_RECORDER_H_