1 // Copyright 2018 The Chromium Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #ifndef QUICHE_QUIC_PLATFORM_API_QUIC_SERVER_STATS_H_ 6 #define QUICHE_QUIC_PLATFORM_API_QUIC_SERVER_STATS_H_ 7 8 #include "quiche/common/platform/api/quiche_server_stats.h" 9 10 #define QUIC_SERVER_HISTOGRAM_ENUM(name, sample, enum_size, docstring) \ 11 QUICHE_SERVER_HISTOGRAM_ENUM(name, sample, enum_size, docstring) 12 13 #define QUIC_SERVER_HISTOGRAM_BOOL(name, sample, docstring) \ 14 QUICHE_SERVER_HISTOGRAM_BOOL(name, sample, docstring) 15 16 #define QUIC_SERVER_HISTOGRAM_TIMES(name, sample, min, max, bucket_count, \ 17 docstring) \ 18 QUICHE_SERVER_HISTOGRAM_TIMES(name, sample, min, max, bucket_count, docstring) 19 20 #define QUIC_SERVER_HISTOGRAM_COUNTS(name, sample, min, max, bucket_count, \ 21 docstring) \ 22 QUICHE_SERVER_HISTOGRAM_COUNTS(name, sample, min, max, bucket_count, \ 23 docstring) 24 25 #endif // QUICHE_QUIC_PLATFORM_API_QUIC_SERVER_STATS_H_ 26