xref: /aosp_15_r20/external/cronet/net/third_party/quiche/src/quiche/quic/platform/api/quic_server_stats.h (revision 6777b5387eb2ff775bb5750e3f5d96f37fb7352b)
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