#ifndef LIBANGLE_HISTOGRAM_MACROS_H_
#define LIBANGLE_HISTOGRAM_MACROS_H_
#include <platform/PlatformMethods.h>
#define ANGLE_HISTOGRAM_TIMES(name, sample) …
#define ANGLE_HISTOGRAM_MEDIUM_TIMES(name, sample) …
#define ANGLE_HISTOGRAM_LONG_TIMES(name, sample) …
#define ANGLE_HISTOGRAM_LONG_TIMES_100(name, sample) …
#define ANGLE_HISTOGRAM_CUSTOM_TIMES(name, sample, min, max, bucket_count) …
#define ANGLE_HISTOGRAM_COUNTS(name, sample) …
#define ANGLE_HISTOGRAM_COUNTS_100(name, sample) …
#define ANGLE_HISTOGRAM_COUNTS_10000(name, sample) …
#define ANGLE_HISTOGRAM_CUSTOM_COUNTS(name, sample, min, max, bucket_count) …
#define ANGLE_HISTOGRAM_PERCENTAGE(name, under_one_hundred) …
#define ANGLE_HISTOGRAM_BOOLEAN(name, sample) …
#define ANGLE_HISTOGRAM_ENUMERATION(name, sample, boundary_value) …
#define ANGLE_HISTOGRAM_MEMORY_KB(name, sample) …
#define ANGLE_HISTOGRAM_MEMORY_MB(name, sample) …
#define ANGLE_HISTOGRAM_SPARSE_SLOWLY(name, sample) …
#define SCOPED_ANGLE_HISTOGRAM_TIMER(name) …
#define SCOPED_ANGLE_HISTOGRAM_LONG_TIMER(name) …
#define SCOPED_ANGLE_HISTOGRAM_TIMER_EXPANDER(name, is_long, key) …
#define SCOPED_ANGLE_HISTOGRAM_TIMER_UNIQUE(name, is_long, key) …
#endif