1 // Copyright 2018 The Chromium Authors
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 NET_THIRD_PARTY_QUICHE_OVERRIDES_QUICHE_PLATFORM_IMPL_QUICHE_SERVER_STATS_IMPL_H_
6 #define NET_THIRD_PARTY_QUICHE_OVERRIDES_QUICHE_PLATFORM_IMPL_QUICHE_SERVER_STATS_IMPL_H_
7 
8 #define QUICHE_SERVER_HISTOGRAM_ENUM_IMPL(name, sample, enum_size, docstring) \
9   do {                                                                        \
10   } while (0)
11 
12 #define QUICHE_SERVER_HISTOGRAM_BOOL_IMPL(name, sample, docstring) \
13   do {                                                             \
14   } while (0)
15 
16 #define QUICHE_SERVER_HISTOGRAM_TIMES_IMPL(name, sample, min, max,  \
17                                            bucket_count, docstring) \
18   do {                                                              \
19   } while (0)
20 
21 #define QUICHE_SERVER_HISTOGRAM_COUNTS_IMPL(name, sample, min, max,  \
22                                             bucket_count, docstring) \
23   do {                                                               \
24   } while (0)
25 
26 #endif  // NET_THIRD_PARTY_QUICHE_OVERRIDES_QUICHE_PLATFORM_IMPL_QUICHE_SERVER_STATS_IMPL_H_
27