#ifndef NET_THIRD_PARTY_QUICHE_OVERRIDES_QUICHE_PLATFORM_IMPL_QUICHE_CLIENT_STATS_IMPL_H_
#define NET_THIRD_PARTY_QUICHE_OVERRIDES_QUICHE_PLATFORM_IMPL_QUICHE_CLIENT_STATS_IMPL_H_
#include "base/metrics/histogram_functions.h"
#include "base/metrics/histogram_macros.h"
namespace quiche {
#define QUICHE_HISTOGRAM_NAME(raw_name) …
#define QUICHE_CLIENT_HISTOGRAM_ENUM_IMPL(name, sample, enum_size, docstring) …
#define QUICHE_CLIENT_HISTOGRAM_BOOL_IMPL(name, sample, docstring) …
#define QUICHE_CLIENT_HISTOGRAM_TIMES_IMPL(name, sample, min, max, \
bucket_count, docstring) …
#define QUICHE_CLIENT_HISTOGRAM_COUNTS_IMPL(name, sample, min, max, \
bucket_count, docstring) …
inline void QuicheClientSparseHistogramImpl(const std::string& name,
int sample) { … }
}
#endif